CryptoApp is a python application that enables you to encrypt or decrypt a file using base64 encryption.
The Encryption Option provides with two key choices:
- Generate a random 44 bytes key and save it to a file
- Use an existing key file
For the Decryption Option you must have in your possession the key file you used for the encryption.
Run the following command in yout terminal to install the required package
pip install cryptography
To run CryptoApp, simply run the cryptoApp.py script using the terminal
python3 cryptoApp.py
or using any other method of your choice.
For a user-friendly experience, a GUI was bulit using the tkinter package.