Commit 40110c07 by chamberone

fix:加密调试

1 parent 0908004d
...@@ -41,6 +41,8 @@ public class EncryptionUtil { ...@@ -41,6 +41,8 @@ public class EncryptionUtil {
* 此处使用AES-128-CBC加密模式,key需要为16位。 * 此处使用AES-128-CBC加密模式,key需要为16位。
* */ * */
public String AESEncrypt(String sSrc) { public String AESEncrypt(String sSrc) {
System.out.println("passWord:"+passWord);
System.out.println("IV:"+IV);
try { try {
if (passWord == null) { if (passWord == null) {
log.error("password 未加载"); log.error("password 未加载");
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!