Skip to content

Instantly share code, notes, and snippets.

View jsbimra's full-sized avatar
💭
Smile till you die! even after!

Jatinder jsbimra

💭
Smile till you die! even after!
  • India
View GitHub Profile
@Holger-Will
Holger-Will / jwtRS256.sh
Last active October 27, 2024 16:54
generate public private key pair (RSA RS256) for use with koa-jwt jasonwebtoken etc.
# generate private key
openssl genrsa -out private.pem 2048
# extatract public key from it
openssl rsa -in private.pem -pubout > public.pem