All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.wangshanhai.power.otp.HMACAlgorithm Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy