Skip to content

Instantly share code, notes, and snippets.

@ygotthilf
Last active December 11, 2023 16:28
Star You must be signed in to star a gist
Embed
What would you like to do?
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
@iamanikeev
Copy link

thank you good sir!

@muhammadfazeel1
Copy link

Thanks :)

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