码迷,mamicode.com
首页 > 其他好文 > 详细

shiro 忘记加密后的密码怎么办?

时间:2018-12-02 16:10:36      阅读:522      评论:0      收藏:0      [点我收藏+]

标签:配置文件   ring   hash   怎么   code   密文   rgs   sys   怎么办   

shiro 权限引用时用以前的代码框架

发现忘记加密后的密码:

解决:下面基于配置文件,将新的密码密文替换以前的即可

    public static void main(String[] args) {
        String hashAlgorithmName = "MD5";//加密
        String credentials = "123456";//密码
        int hashIterations = 1024; //加密次数
           
        Object obj = new SimpleHash(hashAlgorithmName, credentials, null, hashIterations);//null 为盐
        System.out.println(obj);
    }
 

 

shiro 忘记加密后的密码怎么办?

标签:配置文件   ring   hash   怎么   code   密文   rgs   sys   怎么办   

原文地址:https://www.cnblogs.com/jsbk/p/10053668.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!