-
-
Save ygotthilf/baa58da5c3dd1f69fae9 to your computer and use it in GitHub Desktop.
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 |
Thanks
thanks
Thanks!
I think this link resolve also this problem.
https://symfony.com/bundles/LexikJWTAuthenticationBundle/current/index.html
thank you.
Thanks! What if I need to use the private key associated to a Metamask wallet to sign? Can I do it by manipulating the key or do I need another type of key altogether?
Thanks
Thanks!
BTW @ygotthilf you can add -N ''
to ssh keygen and it will not even ask for passphrase
awesome!!! Thx
Thanks! Nice and easy!
Awesome, thank youuu
many thanks
save my day, thanks
Thanks
Now, it doesn't work because newer version of
ssh-keygen
no longer usesPEM
format as default key format. It have changed toRFC4716
for default key format. Thus, I have to setPEM
format explicitly :
ssh-keygen -t rsa -b 4096 -m PEM -f jwtRS256.key
This will work 👍
In case anyone is getting an error from openssl, try this.
many thanks
thank you good sir!
Thanks :)
nice
oh hell yeah
concise and useful :)
thx
thanks!
Thanks
Thanks!! Amazing!
let me contribute to the thanks
Thanks
awesome
Thanks!
It was useful for me too! Thanks!
Thank you indeed!