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

com.dahuatech.hutool.crypto.digest.HmacAlgorithm Maven / Gradle / Ivy

There is a newer version: 1.0.13.7
Show newest version
package com.dahuatech.hutool.crypto.digest;

/**
 * HMAC算法类型
* see: https://docs.oracle.com/javase/7/docs/technotes/guides/security/StandardNames.html#Mac * * @author Looly */ public enum HmacAlgorithm { HmacMD5("HmacMD5"), HmacSHA1("HmacSHA1"), HmacSHA256("HmacSHA256"), HmacSHA384("HmacSHA384"), HmacSHA512("HmacSHA512"), /** HmacSM3算法实现,需要BouncyCastle库支持 */ HmacSM3("HmacSM3"); private String value; HmacAlgorithm(String value) { this.value = value; } public String getValue() { return this.value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy