minor fix - removed redundant data
This commit is contained in:
parent
df44199a02
commit
23af6d5b1d
2 changed files with 1 additions and 2 deletions
|
@ -71,9 +71,8 @@ def schnorr_verify(message: bytes, signature: Tuple[int, int], params: Tuple[int
|
||||||
|
|
||||||
def demo() -> None:
|
def demo() -> None:
|
||||||
print("Lab6: ElGamal (encrypt/decrypt) and Schnorr (sign/verify) demo")
|
print("Lab6: ElGamal (encrypt/decrypt) and Schnorr (sign/verify) demo")
|
||||||
default_msg = os.environ.get("LAB6_MESSAGE", "Test message for Lab6")
|
|
||||||
try:
|
try:
|
||||||
user_msg = input(f"Enter plaintext [{default_msg}]: ").strip()
|
user_msg = input(f"Enter plaintext: ").strip()
|
||||||
except EOFError:
|
except EOFError:
|
||||||
user_msg = ""
|
user_msg = ""
|
||||||
message = (user_msg or default_msg).encode()
|
message = (user_msg or default_msg).encode()
|
||||||
|
|
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue