com.wangshanhai.power.otp.HMACAlgorithm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shanhai-power-spring-boot-starter Show documentation
Show all versions of shanhai-power-spring-boot-starter Show documentation
山海Power - 基于SpringBoot的权限组件,极致精简,只为满足简单需要。
The newest version!
package com.wangshanhai.power.otp;
/**
* HMAC algorithm enum
* @author Bastiaan Jansen
*/
public enum HMACAlgorithm {
@Deprecated
SHA1("HmacSHA1"),
SHA224("HmacSHA224"),
SHA256("HmacSHA256"),
SHA384("HmacSHA384"),
SHA512("HmacSHA512");
private final String name;
HMACAlgorithm(String name) {
this.name = name;
}
public String getHMACName() {
return name;
}
}