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: 9 months 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 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-29T15:28:35.000Z (about 2 years ago)
- Last Synced: 2025-01-30T02:28:28.753Z (11 months ago)
- Language: Python
- Homepage:
- Size: 21.5 KB
- Stars: 1
- 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
```