A Python implementation of the Caesar Cipher for encrypting and decrypting text using a shift key.
git clone https://github.com/kareeemdiaahelal/caesar-cipher.git
cd caesar-cipher
python Code.py- Text: The text to encrypt or decrypt.
- Shift Key: An integer between 1 and 26.
- Operation: Choose between encrypting or decrypting.
Encrypting:
Enter the text you want to encrypt or decrypt: Hello World
Enter the shift key (From 1 to 26): 3
Choice: 1
Result: Khoor ZruogDecrypting:
Enter the text you want to encrypt or decrypt: Khoor Zruog
Enter the shift key (From 1 to 26): 3
Choice: 2
Result: Hello World- Python 3.x or higher