This is a simple Python program that performs the Caesar Cipher encryption and decryption on a given text message.
- Run the script using Python:
python caesar_cipher.py
. - Choose whether you want to Encrypt or Decrypt the message.
- Enter your message.
- Enter the shift value you want to apply to the message.
- The program will display the result of the encryption or decryption.
The Caesar Cipher is a substitution cipher that replaces each letter in the plaintext with a letter at a fixed shift in the alphabet. The program uses a list of the lowercase letters of the alphabet for the substitution.
This project is licensed under the MIT License.