A simple implementation of the Caesar Cipher in Python. This project includes functionality for both encrypting and decrypting messages using the Caesar Cipher technique.
The Caesar Cipher is a type of substitution cipher where each letter in the plaintext is shifted a certain number of places down or up the alphabet. This project provides a Python implementation for both encryption and decryption.
- Encrypt messages using a specified shift value.
- Decrypt messages using a specified shift value.
- Handles both uppercase and lowercase letters.
- Preserves non-alphabetic characters unchanged.