Skip to content

Instantly share code, notes, and snippets.

View jose-roberto-abreu's full-sized avatar

José Roberto Abreu Báez jose-roberto-abreu

  • Homeappzz
  • Santo Domingo, Republica Dominicana
View GitHub Profile
@jose-roberto-abreu
jose-roberto-abreu / jwtRS256.sh
Created May 31, 2021 21:34 — forked from Holger-Will/jwtRS256.sh
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