From 6553c706ea1981744694855ecd1abde9930788c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?leehagjoon=28=EC=9D=B4=ED=95=99=EC=A4=80=29?= Date: Mon, 25 Sep 2023 13:25:08 +0900 Subject: [PATCH] =?UTF-8?q?[LDRA]=20113=20S=20:=20=ED=95=9C=EA=B8=80=20?= =?UTF-8?q?=EB=AC=B8=EC=9E=90=20=EB=98=90=EB=8A=94=20=EC=95=84=EC=8A=A4?= =?UTF-8?q?=ED=82=A4=EC=BD=94=EB=93=9C=20=EC=82=AC=EC=9A=A9=ED=95=98?= =?UTF-8?q?=EB=A9=B4=20=EC=95=88=EB=90=9C=EB=8B=A4.=20-=20log=20=EC=98=81?= =?UTF-8?q?=EB=AC=B8=EC=9C=BC=EB=A1=9C=20=EB=B3=80=EA=B2=BD,=20=ED=8A=B9?= =?UTF-8?q?=EC=88=98=EB=AC=B8=EC=9E=90=20=EB=B3=80=EA=B2=BD=20$=20?= =?UTF-8?q?=ED=91=9C=EC=8B=9C=EB=8A=94=20=EC=82=AC=EC=9C=A0=EC=84=9C=20?= =?UTF-8?q?=EC=9E=91=EC=84=B1(=EB=AA=A8=EC=95=84=EC=86=8C=ED=94=84?= =?UTF-8?q?=ED=8A=B8)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../palnet/server/command/SocketCommand.java | 18 +++++++++--------- .../server/encrptn/kisa/KISA_SEED_CBC.java | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/main/java/com/palnet/server/command/SocketCommand.java b/src/main/java/com/palnet/server/command/SocketCommand.java index 2cefd3e..18fa26f 100644 --- a/src/main/java/com/palnet/server/command/SocketCommand.java +++ b/src/main/java/com/palnet/server/command/SocketCommand.java @@ -137,7 +137,7 @@ public class SocketCommand { ControlCacheUtils.setControl(model.getObjectId(),ccm); } catch (IOException e) { - logger.error("요청한 URL 정보가 잘못되었습니다.", e.getMessage()); + logger.error("Requested URL Information is Invalid.", e.getMessage()); } catch (Exception e) { e.printStackTrace(); } @@ -162,8 +162,8 @@ public class SocketCommand { messageProducer.sendControlMessage(model); } else { - logger.error("좌표 정보가 존재하지 않습니다."); - throw new IllegalArgumentException("좌표 정보가 존재하지 않습니다."); + logger.error("Coordinate Information does not exist."); + throw new IllegalArgumentException("Coordinate Information does not exist."); } } } @@ -253,7 +253,7 @@ public class SocketCommand { ControlCacheUtils.setControl(model.getObjectId(),ccm); } catch (IOException e) { - logger.error("요청한 URL 정보가 잘못되었습니다.", e.getMessage()); + logger.error("Requested URL Information is Invalid.", e.getMessage()); } catch (Exception e) { e.printStackTrace(); } @@ -276,8 +276,8 @@ public class SocketCommand { messageProducer.sendControlMessage(model); } else { - logger.error("좌표 정보가 존재하지 않습니다."); - throw new IllegalArgumentException("좌표 정보가 존재하지 않습니다."); + logger.error("Coordinate Information does not exist."); + throw new IllegalArgumentException("Coordinate Information does not exist."); } } } @@ -367,7 +367,7 @@ public class SocketCommand { ControlCacheUtils.setControl(model.getObjectId(),ccm); } catch (IOException e) { - logger.error("요청한 URL 정보가 잘못되었습니다.", e.getMessage()); + logger.error("Requested URL Information is Invalid.", e.getMessage()); } catch (Exception e) { e.printStackTrace(); } @@ -390,8 +390,8 @@ public class SocketCommand { messageProducer.sendControlMessage(model); } else { - logger.error("좌표 정보가 존재하지 않습니다."); - throw new IllegalArgumentException("좌표 정보가 존재하지 않습니다."); + logger.error("Coordinate information does not exist."); + throw new IllegalArgumentException("Coordinate information does not exist."); } } } diff --git a/src/main/java/com/palnet/server/encrptn/kisa/KISA_SEED_CBC.java b/src/main/java/com/palnet/server/encrptn/kisa/KISA_SEED_CBC.java index 0ae0444..71b0145 100644 --- a/src/main/java/com/palnet/server/encrptn/kisa/KISA_SEED_CBC.java +++ b/src/main/java/com/palnet/server/encrptn/kisa/KISA_SEED_CBC.java @@ -1028,10 +1028,10 @@ public class KISA_SEED_CBC { System.out.print("\n"); System.out.print("[ Test SEED reference code CBC]"+"\n"); System.out.print("\n\n"); - - - - System.out.print("[ Test Encrypt mode : ��� 1 ]"+"\n"); + + + + System.out.print("[ Test Encrypt mode : \uFFFD\uFFFD\uFFFD 1 ]" +"\n"); System.out.print("Key\t\t\t\t: "); for (int i=0; i<16; i++) System.out.print(Integer.toHexString(0xff&pbUserKey[i])+" "); System.out.print("\n"); @@ -1149,7 +1149,7 @@ public class KISA_SEED_CBC { PLAINTEXT_LENGTH = 14; - System.out.print("\n\n[ Test Encrypt mode : ��� 2 ]"+"\n"); + System.out.print("\n\n[ Test Encrypt mode : \uFFFD\uFFFD\uFFFD 2 ]" +"\n"); System.out.print("Key\t\t\t\t: "); for (int i=0; i<16; i++) System.out.print(Integer.toHexString(0xff&pbUserKey[i])+", "); System.out.print("\n");