Simple CaesarCipher Cryptography Demo using Python 3
- Main file to start is
Cryptography.py
. - Words are validated for finding best fit shift key for decryption using
words.txt
file.
- User is asked to select one task either Encryption or Decryption.
- For Encryption, User is prompted for text and shift key to encrypt.
- For Decryption, user is prompted for text. Best shift key is caculated by system itself. (NOTE: Use only one shift key for one text)
For more details on caesar cipher cryptography algorithm click here.
Note: assignment for edx course MITx:6.00.1x Introduction to Computer Science and Programming Using Python