MAC系列算法

image.png

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值


永乐
23 声望7 粉丝

目前文章属于笔记类型,暂未整理。 后期会系统化整理。


引用和评论

0 条评论