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;
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。