From 639b1ee4ff5ab8a8828f4775c45127a85dad24ac Mon Sep 17 00:00:00 2001 From: nikit Date: Wed, 10 Dec 2025 22:32:51 +0500 Subject: [PATCH 1/2] Redacting --- src/test/java/com/thealgorithms/ciphers/BlowfishTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/com/thealgorithms/ciphers/BlowfishTest.java b/src/test/java/com/thealgorithms/ciphers/BlowfishTest.java index ef5e634f781b..fcb8ea931001 100644 --- a/src/test/java/com/thealgorithms/ciphers/BlowfishTest.java +++ b/src/test/java/com/thealgorithms/ciphers/BlowfishTest.java @@ -31,7 +31,7 @@ void testDecrypt() { // when String plainText = blowfish.decrypt(cipherText, key); - + String plainText2= blowfish.decrypt(cipherText, key); // then assertEquals(expectedOutput, plainText); } From 279a5e312f0707969e92dcbf94ae43138a6c4879 Mon Sep 17 00:00:00 2001 From: nikit Date: Wed, 10 Dec 2025 22:35:23 +0500 Subject: [PATCH 2/2] Redacting2 --- src/test/java/com/thealgorithms/ciphers/BlowfishTest.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/java/com/thealgorithms/ciphers/BlowfishTest.java b/src/test/java/com/thealgorithms/ciphers/BlowfishTest.java index fcb8ea931001..449f3488e646 100644 --- a/src/test/java/com/thealgorithms/ciphers/BlowfishTest.java +++ b/src/test/java/com/thealgorithms/ciphers/BlowfishTest.java @@ -32,6 +32,7 @@ void testDecrypt() { // when String plainText = blowfish.decrypt(cipherText, key); String plainText2= blowfish.decrypt(cipherText, key); + String plainText3= blowfish.decrypt(cipherText, key); // then assertEquals(expectedOutput, plainText); }