Skip to content

Latest commit

 

History

History
22 lines (11 loc) · 530 Bytes

README.md

File metadata and controls

22 lines (11 loc) · 530 Bytes

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!