1. 程式人生 > >shiro 忘記加密後的密碼怎麽辦?

shiro 忘記加密後的密碼怎麽辦?

static algorithm 怎麽 忘記 密文 文件 int 加密 args

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 忘記加密後的密碼怎麽辦?