Skip to content

Latest commit

 

History

History
54 lines (47 loc) · 1.63 KB

README.md

File metadata and controls

54 lines (47 loc) · 1.63 KB

AES-256 Encryption Software in Python

Encryption Software that encrypt any type of file on your computer with a password or a keyfile.
Works on any OS.

Get started

Encrypt file

You have to select a file to encrypt.
For the encryption, you have two choices:
  • Create a password
  • Select a key file containing a 256 bits key to be compatible with AES-256. This key can be auto-generated using the button "Generate Key"
After, you can choose to delete the plain file before encrypting it.

Decrypt file

Same choices as Encrypt Mode.
Enter the password or browse to the keyfile you used to encrypt the file,
select the encrypted file and decrypt it.

App Preview

Encrypt mode

image

Decrypt mode

image

Build

You can compile this script if you want, using pyinstaller.
Download the repository and open a terminal in it.

Create a virtual environment with the following command and activate it:

python3 -m venv .env

On windows (Powershell):

.\.env\Scripts\Activate.ps1

On linux (bash):

source .env/bin/activate

Install depending libraries:

pip install -r requirements.txt
pip install pyinstaller

Compile the python script in one executable file using pyinstaller:

pyinstaller.exe -F main.py --noconsole --icon=app.ico

You can exit of the virtual environment with deactivate.
You should see the binary compiled in the dist folder.