shiro 忘记加密后的密码怎么办?
Posted jsbk
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shiro 忘记加密后的密码怎么办?相关的知识,希望对你有一定的参考价值。
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 忘记加密后的密码怎么办?的主要内容,如果未能解决你的问题,请参考以下文章