io.github.silencelwy.smsapi.client.HmacAlgorithms Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jf-sms-send-sdk Show documentation
Show all versions of jf-sms-send-sdk Show documentation
a tool about send short message
package io.github.silencelwy.smsapi.client;
public enum HmacAlgorithms {
HMAC_MD5("HmacMD5"),
HMAC_SHA_1("HmacSHA1"),
HMAC_SHA_224("HmacSHA224"),
HMAC_SHA_256("HmacSHA256"),
HMAC_SHA_384("HmacSHA384"),
HMAC_SHA_512("HmacSHA512");
private final String name;
private HmacAlgorithms(String algorithm) {
this.name = algorithm;
}
public String getName() {
return this.name;
}
@Override
public String toString() {
return this.name;
}
}