|
||||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.lang.Object gboat2.base.bridge.util.security.HMACUtil
public class HMACUtil
HMAC(Hash Message Authentication Code,即:散列消息鉴别码)加密操作工具类
字段摘要 | |
---|---|
static String |
HMAC_MD5
No keysize restriction., default key size is 512 bits |
static String |
HMAC_SHA1
No keysize restriction., default key size is 512 bits |
static String |
HMAC_SHA256
No keysize restriction., default key size is 256 bits |
static String |
HMAC_SHA384
No keysize restriction., default key size is 384 bits |
static String |
HMAC_SHA512
No keysize restriction., default key size is 512 bits |
构造方法摘要 | |
---|---|
HMACUtil()
|
方法摘要 | |
---|---|
static byte[] |
encryptHMAC(byte[] data,
String hmacMD5Key)
使用 HmacMD5 对数据进行加密 |
static byte[] |
encryptHMAC(byte[] data,
String key,
String algorithm)
对数据进行 HMAC 加密 |
static String |
encryptHMAC(String data,
String hmacMD5Key)
使用 HmacMD5 对字符串进行加密 |
static String |
encryptHMAC(String data,
String key,
String algorithm)
对字符串进行 HMAC 加密 |
static String |
generateMacKey()
生成 HmacMD5 加密算法的密钥 |
static String |
generateMacKey(String algorithm)
生成 HMAC 密钥 |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
字段详细信息 |
---|
public static final String HMAC_MD5
public static final String HMAC_SHA1
public static final String HMAC_SHA256
public static final String HMAC_SHA384
public static final String HMAC_SHA512
构造方法详细信息 |
---|
public HMACUtil()
方法详细信息 |
---|
public static String generateMacKey()
public static String generateMacKey(String algorithm)
algorithm
- HMAC 加密算法,请参见:Encryptor.HMAC_*
public static byte[] encryptHMAC(byte[] data, String hmacMD5Key)
data
- 要进行加密的数据hmacMD5Key
- 经过 BASE64 编码的密钥字符串
public static String encryptHMAC(String data, String hmacMD5Key)
data
- 要进行加密的字符串hmacMD5Key
- 经过 BASE64 编码的密钥字符串
public static byte[] encryptHMAC(byte[] data, String key, String algorithm)
data
- 要进行加密的数据key
- HMAC 密钥algorithm
- HMAC 加密算法,请参见:Encryptor.HMAC_*
public static String encryptHMAC(String data, String key, String algorithm)
data
- 要进行加密的字符串key
- 经过 HMAC 密钥algorithm
- HMAC 加密算法,请参见:Encryptor.HMAC_*
|
||||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |