From b8e3ba6863f41038680e13efff4ecdba46c9ed3d Mon Sep 17 00:00:00 2001 From: Adam Doupe Date: Thu, 2 Nov 2023 18:45:30 -0700 Subject: [PATCH] Update the error message --- cryptography/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cryptography/run b/cryptography/run index ddb5be2..2a28b67 100755 --- a/cryptography/run +++ b/cryptography/run @@ -168,7 +168,7 @@ def level6(): B = input_hex("B") if not (B > 2**1024): - print("Invalid B value (B > 2**1024)", file=sys.stderr) + print("Invalid B value (B <= 2**1024)", file=sys.stderr) exit(1) s = pow(B, a, p)