Encryption Software that encrypt any type of file on your computer with a password or a keyfile.
Works on any OS.
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"
Enter the password or browse to the keyfile you used to encrypt the file,
select the encrypted file and decrypt it.
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 .envOn windows (Powershell):
.\.env\Scripts\Activate.ps1On linux (bash):
source .env/bin/activateInstall depending libraries:
pip install -r requirements.txt
pip install pyinstallerCompile the python script in one executable file using pyinstaller:
pyinstaller.exe -F main.py --noconsole --icon=app.icoYou can exit of the virtual environment with deactivate.
You should see the binary compiled in the dist folder.

