A simple Python implementation of the Caesar Cipher encryption and decryption algorithm.
- Encrypt messages
- Decrypt messages
- Supports custom shift values
- Preserves spaces and punctuation
- Interactive command-line interface
The Caesar Cipher shifts each letter in a message by a specified number of positions in the alphabet.
Example:
Original Message: hello
Shift: 3
Encrypted Message: khoor
Clone the repository:
git clone https://github.com/Ratneshwar-Veerappan/caesar-cipher-python.git
Navigate to the project folder:
cd caesar-cipher-python
Run the program:
python main.py
- Python 3
Ratneshwar Veerappan