diff --git a/checkstyle.xml b/checkstyle.xml index 5ada9361d03c..4078ffbbf537 100644 --- a/checkstyle.xml +++ b/checkstyle.xml @@ -139,7 +139,7 @@ - + diff --git a/src/main/java/com/thealgorithms/ciphers/AES.java b/src/main/java/com/thealgorithms/ciphers/AES.java index cd04395e1b72..5d614afbe584 100644 --- a/src/main/java/com/thealgorithms/ciphers/AES.java +++ b/src/main/java/com/thealgorithms/ciphers/AES.java @@ -2756,8 +2756,8 @@ public static void main(String[] args) { in = input.nextLine(); BigInteger encryptionKey = new BigInteger(in, 16); System.out.println( - "The encrypted message is: \n" + - encrypt(plaintext, encryptionKey).toString(16) + "The encrypted message is: \n" + + encrypt(plaintext, encryptionKey).toString(16) ); } case 'D', 'd' -> { @@ -2772,8 +2772,8 @@ public static void main(String[] args) { in = input.nextLine(); BigInteger decryptionKey = new BigInteger(in, 16); System.out.println( - "The deciphered message is:\n" + - decrypt(ciphertext, decryptionKey).toString(16) + "The deciphered message is:\n" + + decrypt(ciphertext, decryptionKey).toString(16) ); } default -> System.out.println("** End **");