Operating System: Windows 10 or later (64-bit)
Python Version: Python 3.8+ (if running from source)
- Download the
SecureFileApp.exefile - Double-click to run (no installation needed)
- Click "Select File" to choose a file to encrypt
- Click "Encrypt File" to encrypt it
- Save the displayed encryption key somewhere safe
- To decrypt, select the encrypted file and click "Decrypt File"
- Paste the key when prompted
Any file type (images, PDFs, text files, videos, etc.)
- The encryption key is required to decrypt files. If lost, the file cannot be recovered.
- Encrypted files remain in their original location.
- All encryption activity is logged in
encryption_log.txt
To create the .exe file from your Python code, run:
pip install pyinstaller
pyinstaller --onefile --windowed --name "SecureFileApp" file_encyptor.pyThis creates a single .exe file in the dist/ folder that users can run without Python installed.