Skip to content

Instantly share code, notes, and snippets.

@mnzit
Forked from nghiaht/generate_rsa_keypair.sh
Created December 28, 2020 05:00
Show Gist options
  • Save mnzit/0055b4c9b6d27ee2ad6e71ad0e799771 to your computer and use it in GitHub Desktop.
Save mnzit/0055b4c9b6d27ee2ad6e71ad0e799771 to your computer and use it in GitHub Desktop.
Generate RSA keypair (public, private + pkcs8) using openssl command
# Private key
openssl genpkey -algorithm RSA -out private.pem -pkeyopt rsa_keygen_bits:2048
# Public key
openssl rsa -pubout -in private.pem -out public_key.pem
# Private key in pkcs8 format (for Java maybe :D)
openssl pkcs8 -topk8 -in private.pem -out private_key.pem
## nocrypt (Private key does have no password)
openssl pkcs8 -topk8 -in private.pem -nocrypt -out private_key.pem
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment