Guest User

Untitled

a guest
Oct 20th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #!/usr/bin/env sh
  2. # Generates 2048bit RSA keypair
  3. openssl genpkey -algorithm RSA -out jwt_private_key.pem -pkeyopt rsa_keygen_bits:2048
  4. openssl rsa -pubout -in jwt_private_key.pem -out jwt_public_key.pem
Add Comment
Please, Sign In to add comment