主要有两种用途:
请求参数加密解密;
敏感信息加密解密。
数据加密
AesEncryptUtil.encrypt(jsonResult));
数据解密
where = CodeUtils.getDoubleDecode(where); where = AesEncryptUtil.desEncrypt(where); where = CodeUtils.getDoubleDecode(where);
解密方法:AesEncryptUtil.desEncrypt 解密前后需要处理中文编码
Powered By layui