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

org.xbib.net.security.cookie.HMac Maven / Gradle / Ivy

The newest version!
package org.xbib.net.security.cookie;

public enum HMac {
    HMAC_SHA1("HMacSHA1"),
    HMAC_SHA256("HMacSHA256");

    String algo;

    HMac(String algo) {
        this.algo = algo;
    }

    public String getAlgo() {
        return algo;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy