Skip to content

Commit ad11e9b

Browse files
committed
removes commented out code
1 parent 075a1d0 commit ad11e9b

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

src/main/java/com/cryptoexamples/java/ExampleStringEncryptionKeyBasedInOneMethod.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ public static void main(String[] args) {
5454

5555
// DECRYPTION
5656
cipher.init(Cipher.DECRYPT_MODE, key, spec);
57-
//cipher.updateAAD(aad);
5857
byte[] decryptedCipher = cipher.doFinal(Base64.getDecoder().decode(cipherText));
5958
String decryptedCipherText = new String(decryptedCipher, StandardCharsets.UTF_8);
6059

0 commit comments

Comments
 (0)