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
# Generate your private key (Don't add passphrase) | |
ssh-keygen -t rsa -b 4096 -f jwtRS256.key | |
# Generate your public key | |
openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub | |
# View your private key | |
cat jwtRS256.key | |
# View your public key | |
cat jwtRS256.key.pub |