Fixed typo in caesar_cipher.py (#2979)

* Fixed typo in caesar_cipher.py

* Typo fixes
This commit is contained in:
CapofWeird
2020-10-17 03:56:11 -04:00
committed by GitHub
parent a88006d04a
commit 05f4089bf0
3 changed files with 3 additions and 3 deletions

View File

@ -183,7 +183,7 @@ class XORCipher:
# crypt = XORCipher()
# key = 67
# # test enrcypt
# # test encrypt
# print(crypt.encrypt("hallo welt",key))
# # test decrypt
# print(crypt.decrypt(crypt.encrypt("hallo welt",key), key))