EnCo is a Cross-Platform file Encryption application developed in Python. This application allows users to Encrypt and Decrypt their files. Encrypt and Decrypt operations are performed with the AES crypto algorithm..
Install Git Clone and Python3
Github Package Must Be Installed On Your Device.
git
sudo apt install git -y
Python3
sudo apt install python3 -y
pip
sudo apt install python3-pip
PyQt5
pip install PyQt5
cryptography
pip install cryptography
Install EnCo
sudo git clone https://github.com/cektor/EnCo.git
cd EnCo
python enco.py
or
python3 enco.py
NOTE: For Compilation Process pyinstaller must be installed. To Install If Not Installed.
pip install pyinstaller
Linux Terminal
pytohn3 -m pyinstaller --onefile --windowed enco.py
Windows VSCode Terminal
pyinstaller --onefile --noconsole enco.py
MacOS VSCode Terminal
pyinstaller --onefile --noconsole enco.py
Linux (based debian) Terminal: Linux (debian based distributions) To install directly from Terminal.
wget -O EnCo_Linux64.deb https://github.com/cektor/EnCo/releases/download/1.00/Setup_Linux64.deb && sudo apt install ./EnCo_Linux64.deb && sudo apt-get install -f
Windows Installer CMD (PowerShell): To Install from Windows CMD with Direct Connection.
powershell -Command "Invoke-WebRequest -Uri 'https://github.com/cektor/EnCo/releases/download/1.00/Setup_Win64.exe' -OutFile 'Setup_Win64.exe'" && start /wait Setup_Win64.exe
Release Page: https://github.com/cektor/EnCo/releases/tag/1.00