com.github.azbh111.utils.java.digest.DigestAlgorithm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils-java Show documentation
Show all versions of utils-java Show documentation
com.github.azbh111:utils-java
The newest version!
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;
}
}