Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 753 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 753 Bytes

CryptoApp

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.

Dependencies

Run the following command in yout terminal to install the required package

pip install cryptography

Run the app

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.