File tree 2 files changed +5
-5
lines changed
src/main/java/com/thealgorithms/ciphers
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 139
139
<module name =" MethodParamPad" />
140
140
<!-- TODO <module name="NoWhitespaceAfter"/> -->
141
141
<module name =" NoWhitespaceBefore" />
142
- <!-- TODO < module name="OperatorWrap"/> -- >
142
+ <module name =" OperatorWrap" />
143
143
<!-- TODO <module name="ParenPad"/> -->
144
144
<module name =" TypecastParenPad" />
145
145
<module name =" WhitespaceAfter" />
Original file line number Diff line number Diff line change @@ -2756,8 +2756,8 @@ public static void main(String[] args) {
2756
2756
in = input .nextLine ();
2757
2757
BigInteger encryptionKey = new BigInteger (in , 16 );
2758
2758
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 )
2761
2761
);
2762
2762
}
2763
2763
case 'D' , 'd' -> {
@@ -2772,8 +2772,8 @@ public static void main(String[] args) {
2772
2772
in = input .nextLine ();
2773
2773
BigInteger decryptionKey = new BigInteger (in , 16 );
2774
2774
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 )
2777
2777
);
2778
2778
}
2779
2779
default -> System .out .println ("** End **" );
You can’t perform that action at this time.
0 commit comments