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

https://github.com/bgmp/cryptography-rsa

RSA Encryption Implementation written in Python
https://github.com/bgmp/cryptography-rsa

hazmat learn python rsa

Last synced: about 1 year ago
JSON representation

RSA Encryption Implementation written in Python

Awesome Lists containing this project

README

          




    Cryptography-RSA




    José Benavente & Daniel Aguayo





This is a small project made for an applied cryptography class. It consists of three scripts written in Python which
aim to implement RSA encryption in a practical context.

The repository has been cleaned up and uploaded here as an academic resource for anybody to peek into.

## Use
```
python keygen.py
python cipher.py --private-key alice.pem --public-key bob.pub -p [password]
python decipher.py --public-key alice.pub --private-key bob.pem -p [password]
```

## Learn
You may find a very detailed explanation on how this project works in real time by reading the [LEARN.md](./LEARN.md)
file.