diff --git a/jero-boot/jero-boot-module-system/src/main/java/com/jero/modules/system/service/impl/LoginServiceImpl.java b/jero-boot/jero-boot-module-system/src/main/java/com/jero/modules/system/service/impl/LoginServiceImpl.java index 74b0ddcd..5542bc0b 100644 --- a/jero-boot/jero-boot-module-system/src/main/java/com/jero/modules/system/service/impl/LoginServiceImpl.java +++ b/jero-boot/jero-boot-module-system/src/main/java/com/jero/modules/system/service/impl/LoginServiceImpl.java @@ -347,8 +347,8 @@ public class LoginServiceImpl implements ILoginService { public Result> getEncryptedString() { Result> result = new Result<>(); Map map = new HashMap<>(); - map.put("key", EncryptedString.key); - map.put("iv",EncryptedString.iv); + map.put("key", EncryptedString.ENCRYPTED_KEY); + map.put("iv",EncryptedString.ENCRYPTED_IV); result.setResult(map); return result; }