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

me.wuwenbin.tools.encrypt.digest.DigestAlgorithm Maven / Gradle / Ivy

The newest version!
package me.wuwenbin.tools.encrypt.digest;

/**
 * 摘要算法类型
* see: https://docs.oracle.com/javase/7/docs/technotes/guides/security/StandardNames.html#MessageDigest * * @author Looly */ public enum DigestAlgorithm { MD2("MD2"), MD5("MD5"), SHA1("SHA-1"), SHA256("SHA-256"), SHA384("SHA-384"), SHA512("SHA-512"); private String value; private DigestAlgorithm(String value) { this.value = value; } public String getValue() { return this.value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy