This is a simple encryption and decryption tool implemented in Python using Caesar Cipher and AES encryption algorithms.
- Encrypts and decrypts text using Caesar Cipher.
- Supports AES encryption for secure text handling.
-
Clone this repository:
git clone https://github.com/shadeekshap/EncryptionTool.git
-
Install dependencies:
pip install cryptography
-
Run the encryption tool:
python encryption_tool.py
-
To encrypt or decrypt, follow the prompts in the terminal.
-
You will need to provide a shift value for the Caesar Cipher.
To encrypt text using Caesar Cipher:
Do you want to (E)ncrypt or (D)ecrypt? e
Enter the text: Hello World!
Enter shift value: 3
Encrypted: Khoor Zruog!To decrypt the encrypted text:
Do you want to (E)ncrypt or (D)ecrypt? d
Enter the text: Khoor Zruog!
Enter shift value: 3
Decrypted: Hello World!- Python 3.x
- Install dependencies: pip install cryptography
This project is licensed under the MIT License.