Commit 5188c795 authored by 刘可心's avatar 刘可心

用户名密码解析问题

parent 20c5cf38
......@@ -117,8 +117,9 @@ public class IndexController extends Controller {
String callback = this.getPara("callback");
// 解密用户名和密码
try {
username = decrypt(username);
password = decrypt(password);
//LiuKexin 20210408 解析用户名密码方式更换
username = AesEncryptUtil.desEncrypt(username);
password = AesEncryptUtil.desEncrypt(password);
} catch (Exception e1) {
e1.printStackTrace();
username = this.getPara("username");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment