Skip to content

Instantly share code, notes, and snippets.

@ygotthilf
Last active November 7, 2024 10:42
Show Gist options
  • Save ygotthilf/baa58da5c3dd1f69fae9 to your computer and use it in GitHub Desktop.
Save ygotthilf/baa58da5c3dd1f69fae9 to your computer and use it in GitHub Desktop.
How to generate JWT RS256 key
ssh-keygen -t rsa -b 4096 -m PEM -f jwtRS256.key
# Don't add passphrase
openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub
cat jwtRS256.key
cat jwtRS256.key.pub
@DoobyDouglas
Copy link

awesome

@Rock070
Copy link

Rock070 commented Aug 18, 2024

Thanks!

@jamerlan
Copy link

It was useful for me too! Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment