Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danielcristho/simple-des
Implementation of decryption and encryption algorithms for Keamanan Informasi (KI) submission
https://github.com/danielcristho/simple-des
Last synced: 24 days ago
JSON representation
Implementation of decryption and encryption algorithms for Keamanan Informasi (KI) submission
- Host: GitHub
- URL: https://github.com/danielcristho/simple-des
- Owner: danielcristho
- Created: 2023-10-13T03:28:10.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-29T15:28:35.000Z (about 1 year ago)
- Last Synced: 2023-10-29T16:27:04.397Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple-DES
Implementation of decryption and encryption algorithms for KI submission
## Build
Create environment (Linux)
```py
python3 -m venv venv
``````bash
source venv/bin/activate
``````bash
pip install -r requirements.txt
```## Run
Build into executable
```py
pyinstaller --onefile -w DES.py
``````bash
./dist/DES
```