https://github.com/phxql/jvm-rsa-showcase
A small project showcasing a hybrid encryption scheme using RSA and AES in Java.
https://github.com/phxql/jvm-rsa-showcase
Last synced: about 2 months ago
JSON representation
A small project showcasing a hybrid encryption scheme using RSA and AES in Java.
- Host: GitHub
- URL: https://github.com/phxql/jvm-rsa-showcase
- Owner: phxql
- License: unlicense
- Created: 2020-08-26T09:09:05.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-28T08:32:45.000Z (almost 6 years ago)
- Last Synced: 2025-01-08T08:14:27.191Z (over 1 year ago)
- Language: Java
- Size: 60.5 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# jvm-rsa-showcase
A small project showcasing a hybrid encryption scheme using RSA and AES in Java.
It showcases:
* Generation of RSA keys
* Save / load RSA keys to / from files
* Encrypt / decrypt data with AES
* Encrypt / decrypt data with RSA
* Sign / verify data with RSA
It's the code for [this blog entry on my blog](https://www.mkammerer.de/blog/rsa-on-the-jvm/).
To start, take a look at [the main method](src/main/java/de/mkammerer/rsaplayground/Main.java).
Encryption from Alice to Bob is [here](src/main/java/de/mkammerer/rsaplayground/Alice.java), decryption from
Bob is [here](src/main/java/de/mkammerer/rsaplayground/Bob.java).