Skip to content

Commit 5e89cec

Browse files
committed
docs: minor update in writeDecrypted method
1 parent 7826792 commit 5e89cec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FileEncryptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ private static boolean writeDecryptedFile(Path inputPath, Path outputPath, byte[
290290
SecretKeySpec skeySpec = new SecretKeySpec(key, ALGORITHM);
291291
SecretKeySpec macKey = new SecretKeySpec(key, HASH_AlGORITHM);
292292

293-
// Initialise cipher and HMac
293+
// Initialise cipher
294294
Cipher cipher = Cipher.getInstance(CIPHER);
295295
cipher.init(Cipher.DECRYPT_MODE, skeySpec, iv);
296296

0 commit comments

Comments
 (0)