From b3921409a8008049211c293359140a112f4d6c2b Mon Sep 17 00:00:00 2001 From: Kenneth Seet <120318851+itstrueitstrueitsrealitsreal@users.noreply.github.com> Date: Mon, 30 Sep 2024 19:27:40 -0700 Subject: [PATCH] Fix typo (#21) --- cryptography/strxor/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cryptography/strxor/run b/cryptography/strxor/run index 22b9f94..99c54fe 100644 --- a/cryptography/strxor/run +++ b/cryptography/strxor/run @@ -23,7 +23,7 @@ for n in range(1, 10): print(f"- Encrypted String: {ct_str}") print(f"- XOR Key String: {key_str}") - answer = input("- Decrypted Character? ").strip() + answer = input("- Decrypted String? ").strip() if answer != pt_str: print("Incorrect!") sys.exit(1)