-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Richard Chou edited this page Mar 6, 2026
·
4 revisions
Welcome to the oauth-node wiki!
# private key
openssl genpkey -algorithm RSA -pkeyopt rsa_keygen_bits:2048 -out private.pem
# private key in pkcs8 format
openssl pkcs8 -topk8 -inform PEM -outform PEM -nocrypt -in private.pem -out private_pk
cs8.pem
# public key
openssl rsa -in private.pem -pubout -out public.pem