/pyenc

A simple python script that allows you easily encrypt and decrypt your files!

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

pyenc

A simple python script that allows you easily encrypt and decrypt your files using AES-256!

To run this script you should have prompt-toolkit and cryptography libraries. To install them just run:

pip install -r requirements.txt

To add this script to your PATH run:

sh install.sh

To encrypt a file:

python3 pyenc.py -e <name of your file>

To decrypt a file:

python3 pyenc.py -d <name of your file>.enc

Feel free to submit issues if you encounter problems!