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

com.github.azbh111.utils.java.digest.DigestAlgorithm Maven / Gradle / Ivy

package com.github.azbh111.utils.java.digest;

/**
 * @author pyz
 * @date 2018/9/13 下午8:49
 */
public enum DigestAlgorithm {

    MD2("MD2"),
    MD5("MD5"),
    SHA1("SHA-1"),
    SHA256("SHA-256"),
    SHA384("SHA-384"),
    SHA512("SHA-512");
    private final String name;

    DigestAlgorithm(String name) {
        this.name = name;
    }

    public String getName() {
        return this.name;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy