/ ___| _ \ \ / / _ \_ _/ _ \| _ \ \ / /
| | | |_) \ V /| |_) || || | | | |_) \ V /
| |___| _ < | | | __/ | || |_| | __/ | |
\____|_| \_\|_| |_| |_| \___/|_| |_|
cryptopy-cli
is a command line interface (CLI) embedded encryption-decryption tool written in Python.
Accepts the file and a password -do not forget the password you used- reads the content of the file, encrypts the content with SHA256 and writes the encrypted content into the new file enc_file
.
Asks the user whether to keep the original file or to remove it. If answer is to keep it, renames the file original_file
. y
|| n
will suffice for making choices.
The script also makes the verification check, whether the files exists or not and calculates the duration of encryption.
Accepts the file and the same password you used when encrypting the file. Once the inputs are given, the script decrypts the file and copies the decrypted content to a file called decoded
.
Also upon exit, asks the user whether to keep the ecrypted file or not. y
|| n
will suffice for making choices.
The script also makes the verification check, whether the files exists or not and calculates the duration of encryption.
Easy:
pip install cryptopy-cli
cryptopy-cli [encrypt] [/path/to/file/] password
cryptopy-cli [decrypt] [/path/to/file/] password
AND AFTER THE ENCRYPTION:
COMPARING THE ORIGINAL FILE AND THE DECODED FILE:
A Friendly Disclaimer:
This is just the first version. The more muscular versions will arrive soon,hopefully. Enjoy and give me feedbacks!