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
- Host: GitHub
- URL: https://github.com/bgmp/cryptography-rsa
- Owner: BGMP
- License: mit
- Created: 2023-08-16T06:18:37.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-08-16T06:51:16.000Z (almost 3 years ago)
- Last Synced: 2025-04-10T00:10:50.363Z (about 1 year ago)
- Topics: hazmat, learn, python, rsa
- Language: Python
- Homepage:
- Size: 10.7 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.