mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-08 02:04:31 +08:00
style: enable OperatorWrap
in checkstyle (#5212)
This commit is contained in:
@ -2756,8 +2756,8 @@ public final class AES {
|
||||
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 final class AES {
|
||||
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 **");
|
||||
|
Reference in New Issue
Block a user