Skip to content

Commit

Permalink
Update the error message
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdoupe committed Nov 3, 2023
1 parent 7e3c047 commit b8e3ba6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cryptography/run
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit b8e3ba6

Please sign in to comment.