https://github.com/isaaczhang4/rsa-cryptography
Python implementation of the RSA Cryptography Algorithm
https://github.com/isaaczhang4/rsa-cryptography
cryptography number-theory python rsa-cryptography
Last synced: 11 months ago
JSON representation
Python implementation of the RSA Cryptography Algorithm
- Host: GitHub
- URL: https://github.com/isaaczhang4/rsa-cryptography
- Owner: IsaacZhang4
- License: mit
- Created: 2025-02-01T19:40:55.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-01T20:25:44.000Z (over 1 year ago)
- Last Synced: 2025-04-05T09:16:10.043Z (about 1 year ago)
- Topics: cryptography, number-theory, python, rsa-cryptography
- Language: Python
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Python RSA-Cryptography
Python implementation of the RSA Cryptography Algorithm
It generates public and private keys, encrypts messages with the public key, and decrypts them with the private key.
Makes use of modular exponentiation for efficient encryption and decryption.
Uses number theory concepts such as Fermat's Little theorem for prime generation