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; }