Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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)