Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```