Skip to content

File Encryptor App using AES-256-GCM. User-friendly interface.

Notifications You must be signed in to change notification settings

u-damien/File_Encryptor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

File Encryptor App using AES-256-GCM. User-friendly interface.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages