File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
src/main/java/com/thealgorithms/ciphers Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 139139 <module name =" MethodParamPad" />
140140 <!-- TODO <module name="NoWhitespaceAfter"/> -->
141141 <module name =" NoWhitespaceBefore" />
142- <!-- TODO < module name="OperatorWrap"/> -- >
142+ <module name =" OperatorWrap" />
143143 <!-- TODO <module name="ParenPad"/> -->
144144 <module name =" TypecastParenPad" />
145145 <module name =" WhitespaceAfter" />
Original file line number Diff line number Diff line change @@ -2756,8 +2756,8 @@ public static void main(String[] args) {
27562756 in = input .nextLine ();
27572757 BigInteger encryptionKey = new BigInteger (in , 16 );
27582758 System .out .println (
2759- "The encrypted message is: \n " +
2760- encrypt (plaintext , encryptionKey ).toString (16 )
2759+ "The encrypted message is: \n "
2760+ + encrypt (plaintext , encryptionKey ).toString (16 )
27612761 );
27622762 }
27632763 case 'D' , 'd' -> {
@@ -2772,8 +2772,8 @@ public static void main(String[] args) {
27722772 in = input .nextLine ();
27732773 BigInteger decryptionKey = new BigInteger (in , 16 );
27742774 System .out .println (
2775- "The deciphered message is:\n " +
2776- decrypt (ciphertext , decryptionKey ).toString (16 )
2775+ "The deciphered message is:\n "
2776+ + decrypt (ciphertext , decryptionKey ).toString (16 )
27772777 );
27782778 }
27792779 default -> System .out .println ("** End **" );
You can’t perform that action at this time.
0 commit comments