Skip to content
This repository has been archived by the owner on Jul 6, 2019. It is now read-only.

den4uk/dencrypt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

dencrypt

Encrypts and decrypts files using AES encryption

PyCrypto module is required. Get source from https://pypi.python.org/pypi/pycrypto

To encrypt a file:

$ python3 dencrypt.py <file> <password>
$ python3 dencrypt.py image.jpg Pa$$w0rd  # Example

This will encrypt the file and transform image.jpg to image.jpg.crpt

To decrypt a file:

$ python3 dencrypt.py <crptfile>
$ python3 dencrypt.py image.jpg.crpt  # Example

You will be requested to enter a password. Upon correct passowrd the file will be decrypted. This will decrypt the file and transform image.jpg.crpt to image.jpg

DISCLAIMER: I HOLD NO RESPONSABILITY FOR ANY LOSS OF YOUR DATA IN THE PROCESS OF ENCRYPTION/DECRYPTION. MAKE SURE YOU ARE FAMILIAR WITH THE SCRIPT BEFORE USING IT.

About

Encrypts and decrypts small files using AES encryption

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages