Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/johanbrook/rsa
A GUI Java app for encrypting/decrypting integers with RSA
https://github.com/johanbrook/rsa
Last synced: about 1 month ago
JSON representation
A GUI Java app for encrypting/decrypting integers with RSA
- Host: GitHub
- URL: https://github.com/johanbrook/rsa
- Owner: johanbrook
- Created: 2011-11-24T22:28:15.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2011-11-24T22:48:44.000Z (about 13 years ago)
- Last Synced: 2024-04-15T12:13:32.020Z (9 months ago)
- Language: Java
- Homepage:
- Size: 92.8 KB
- Stars: 12
- Watchers: 5
- Forks: 19
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple RSA encryption/decryption with Java (GUI)
Since we're studying discrete mathematics in school, and currently reading about modular mathematics and RSA encryption, I thought it would be a nice exercise to whip something up in Java. I didn't want to take advantage of the various built in keypair generators in the JDK, but used a couple of handy methods in the `BigInteger` class instead.
Nothing fancy. Works only with integers, for the time being.
More about RSA: http://en.wikipedia.org/wiki/RSA_(algorithm)