Last active
June 28, 2021 08:54
-
-
Save sokil/bfa516d5e1d87183f99b596d3b1311e1 to your computer and use it in GitHub Desktop.
PEM generation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# create private key with passphrase | |
openssl genrsa -out config/jwt/private.pem -aes256 4096 | |
# Write public key | |
openssl rsa -pubout -in private.pem -out public.pem |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment