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

https://github.com/willdunklin/elgamal

Implementation of elliptic curve elgamal cryptography in Python (coursework)
https://github.com/willdunklin/elgamal

cryptography

Last synced: 27 days ago
JSON representation

Implementation of elliptic curve elgamal cryptography in Python (coursework)

Awesome Lists containing this project

README

          

# elgamal

Basic implementation of naive ElGamal cryptosystem.

## Usage

```shell
# Help
$ python3.9 main.py -h

# Generate crypto keys
$ python3.9 main.py elgamal gen_keys

# Encrypt file
$ python3.9 main.py elgamal gen_keys

# Decrypt file
$ python3.9 main.py elgamal decrypt
```