共计 912 个字符,预计需要花费 3 分钟才能阅读完成。
MAC 系列算法
1. 特点
MAC 算法与 MD 和 SHA 的区别是多了一个密钥,密钥能够随机给
2. java 实现
public static String getMAC(String plaintext) throws NoSuchAlgorithmException, InvalidKeyException {
// 生成秘钥
SecretKeySpec skp1 = new SecretKeySpec("12345678".getBytes(StandardCharsets.UTF_8),"HmacSHA1");
// 应用 字符串 a123456789 中索引 1 开始,计算 8 位为秘钥
SecretKeySpec skp2 = new SecretKeySpec("a123456789".getBytes(StandardCharsets.UTF_8),1,8,"HmacSHA1");
// 通过 getEncoded 失去秘钥
String key = new String(skp1.getEncoded());
// 通过 getAlgorithm 失去加密算法
String algorithm = skp1.getAlgorithm();
// 生成 Mac 算法实例
Mac mac = Mac.getInstance(algorithm);
// 初始化 mac 对象
mac.init(skp1);
String saltstr = "saltstr";
// 加盐操作
mac.update(saltstr.getBytes(StandardCharsets.UTF_8));
// 最初失去加密后的 byte 列表
byte[] bty = mac.doFinal(plaintext.getBytes(StandardCharsets.UTF_8));
// 生成 ByteString 对象
ByteString res = ByteString.of(bty);
// 调用 hex 和 base64 办法 失去编码后的值
String resHex = res.hex();
String resBase64 = res.base64();
return resHex+"||"+resBase64;
}
3. 加密后的字节数组能够编码成 Hex、Base64
4. 没有任何输出,也能计算 hash 值
正文完