make language consistent

This commit is contained in:
Vicky Rampin 2021-10-24 14:36:03 -04:00
parent bc4d05361c
commit 85e99f472c
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ def main():
key = args.key
user_text = args.text
print("Ciphertext: " + encryption(user_text, key))
print("Encrypted ciphertext: " + encryption(user_text, key))
print("Decrypted plaintext: " + decryption(user_text, key))