Skip to content

Commit fa4c5af

Browse files
committed
just notes
1 parent ded201e commit fa4c5af

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

KazCrypt_v1.2.0.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,8 @@ def save_rsa_keys(private_key: str, public_key: str):
564564
Asks the user if keys should be printed to console or saved to files.
565565
If saving to files, for the private key, ask if the user wants to encrypt the file.
566566
"""
567-
choice = input("Do you want the RSA keys to be displayed on the console (c) or saved to files (f)? ").strip().lower()
567+
print("As of version 1.2.0 displaying keys on the console is broken!") # Delete after fix
568+
choice = input("Do you want the RSA keys to be displayed on the console (c) or saved to files (f)? ").strip().lower() # Needs fixing
568569
if choice == "c":
569570
print("\nPrivate Key:")
570571
print(private_key)
@@ -1081,3 +1082,10 @@ def legacy_features():
10811082
else:
10821083
print("Invalid option!")
10831084

1085+
1086+
1087+
"""
1088+
to fix
1089+
lines:
1090+
567
1091+
"""

0 commit comments

Comments
 (0)