Java加密 消息摘要算法MAC实现详解
MAC是消息摘要算法的第三种实现方式,另外两种方式分别为:MD2\4\5、SHA。
MAC的jdk实现:1、默认密钥方式
private static void MAC_JDK(){ try { KeyGenerator keyGenerator = KeyGenerator.getInstance("HmacMD5");//初始化KeyGenerator SecretKey secretKey = keyGenerator.generateKey();//产生密钥 byte[] key = secretKey.getEncoded();//获得默认密钥 SecretKey restorSecretKey = new SecretKeySpec(key, "HmacMD5");//还原密钥 Mac mac = Mac.getInstance(restorSecretKey.getAlgorithm());//示例化MAC mac.init(restorSecretKey);//初始化MAC byte[] hmacMD5Bytes = mac.doFinal(src.getBytes());//执行摘要 System.out.println("hmacMD5Byte : "+Hex.encodeHexString(hmacMD5Bytes)); } catch (Exception e) { e.printStackTrace(); } }
2、动态密钥方式:
private static void MAC_JDK_dongtai(){ try { byte[] key = Hex.decodeHex(new char[]{'a','a','a','a','a','a','a','a','a','a'});//动态获得密钥 SecretKey restorSecretKey = new SecretKeySpec(key, "HmacMD5");//还原密钥 Mac mac = Mac.getInstance(restorSecretKey.getAlgorithm());//示例化MAC mac.init(restorSecretKey);//初始化MAC byte[] hmacMD5Bytes = mac.doFinal(src.getBytes());//执行摘要 System.out.println("hmacMD5Byte : "+Hex.encodeHexString(hmacMD5Bytes)); } catch (Exception e) { e.printStackTrace(); } }
MAC的BC实现:
private static void MAC_BC(){ HMac hmac = new HMac(new MD5Digest()); hmac.init(new KeyParameter(org.bouncycastle.util.encoders.Hex.decode("aaaaaaaaaa"))); hmac.update(src.getBytes(), 0, src.getBytes().length); byte[] mac_BC_Byte = new byte[hmac.getMacSize()];//执行摘要 hmac.doFinal(mac_BC_Byte, 0); System.out.println("mac_BC_Byte : "+Hex.encodeHexString(mac_BC_Byte)); }
到今天JAVA中的Base64、对称加密、消息摘要加密的实现总结就完工了,如果哪位对此感兴趣,还望多多交流。(1453296946@qq.com)
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
相关文章
MyBatisPlus使用@TableField注解处理默认填充时间的问题
这篇文章主要介绍了MyBatisPlus使用@TableField注解处理默认填充时间的问题,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教2022-01-01Spring AOP之@Around,@AfterReturning使用、切不进去的解决方案
这篇文章主要介绍了Spring AOP之@Around,@AfterReturning使用、切不进去的解决方案,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教2024-05-05Redisson 分布式延时队列 RedissonDelayedQueue 运行流程
这篇文章主要介绍了Redisson分布式延时队列 RedissonDelayedQueue运行流程,文章围绕主题展开详细的内容介绍,具有一定的参考价值,需要的小伙伴可以参考一下2022-09-09springboot bootstrap.yml nacos配置中心问题
这篇文章主要介绍了springboot bootstrap.yml nacos配置中心问题,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教2023-03-03IDEA插件EasyCode及MyBatis最优配置步骤详解
这篇文章主要介绍了IDEA插件EasyCode MyBatis最优配置步骤详解,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下2020-12-12在spring-boot工程中添加spring mvc拦截器
这篇文章主要介绍了在spring-boot工程中添加spring mvc拦截器,Spring MVC的拦截器(Interceptor)不是Filter,同样可以实现请求的预处理、后处理。,需要的朋友可以参考下2019-06-06
最新评论