-
-
Save 0xC0A1/971bf0b674e23545f73b59251ec18c1b to your computer and use it in GitHub Desktop.
How to generate JWT RS512 key
This file contains hidden or 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
ssh-keygen -t rsa -b 4096 -e SHA512 -f jwtRS512.key | |
# Don't add passphrase | |
openssl rsa -in jwtRS512.key -pubout -outform PEM -out jwtRS512.key.pub | |
cat jwtRS512.key | |
cat jwtRS512.key.pub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment