MCTVR / PyFileEncrypt

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PyFileEncrypt

Specials

The File Extension .pyenc has already been registered in Fileinfo.com Huge thanks to the Fileinfo.com team!

Introduction

PyFileEncrypt is a set of Python Scripts that can help you encrypt files such as images and videos, with the AES 256 Encryption Algorithm

The Python Scripts use External Libraries including pyAesCrypt and stdiomask

Usage

Since PyFileEncrypt uses External Libraries, you have to install the Libraries before using the Scripts

To install with pip, run:

pip install pyAesCrypt

And

pip install stdiomask

To use the scripts, run:

Encrypt:
python3 FileEncrypt.py
Decrypt:
python3 FileDecrypt.py

Example

mctvr@MCTVR % python3 FileEncrypt.py
Input your filename here (same dir with extension): mastercreeper.png
Password: ********
Progress: 0%
Progress: 60%
Progress: 80%
Progress: 100%
mctvr@MCTVR % 
mctvr@MCTVR % python3 FileDecrypt.py   
Input your filename here (same dir with .pyenc): mastercreeper.png.pyenc
Password: ********
Progress: 0%
Progress: 20%
Progress: 60%
Progress: 100%
mctvr@MCTVR % 

About

License:MIT License


Languages

Language:Python 100.0%