From 9fbaf42ce0b773761e05d44db3f17f6602614fb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A2=81=E7=90=A6=E6=B6=9B?= Date: Thu, 9 Mar 2023 12:03:54 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90fix=20sonar=E3=80=91LoginServiceImpl?= =?UTF-8?q?=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../jero/modules/system/service/impl/LoginServiceImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }