用shiro自再工具加密:

本文介绍如何使用Shiro框架进行MD5加密操作,并详细解释了带盐加密的过程。通过设置散列次数和使用特定的盐值来增加密码的安全性。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

用shiro自再工具加密:

//		//md5加密  
//        String hashAlgorithmName = "MD5";  
//        String credentials = "admin";  
//        int hashIterations = 1024;  
//        Object obj = new SimpleHash(hashAlgorithmName, credentials, null, hashIterations);  
//        System.out.println(obj); 
          
          //md5加密  ,加盐
        String hashAlgorithmName = "MD5";// simpleHash是其它散列的父类(如下图),如果要用simpleHash就要告诉shiro使用哪种hash方式
        String credentials = "admin";  //需要加密的东西
        int hashIterations = 1024;  //散列的次数
        ByteSource credentialsSalt = ByteSource.Util.bytes("admin");  //盐
        Object obj = new SimpleHash(hashAlgorithmName, credentials, credentialsSalt, hashIterations);  
        System.out.println(obj); 


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值