Skip to content

Instantly share code, notes, and snippets.

@santospatrick
Last active October 6, 2024 19:55
Show Gist options
  • Save santospatrick/e27d29a2ddbd742a65abd39c04c9236b to your computer and use it in GitHub Desktop.
Save santospatrick/e27d29a2ddbd742a65abd39c04c9236b to your computer and use it in GitHub Desktop.
Generate JWT RS256 Public / Private keys on MacOS
# generate private key
openssl genpkey -algorithm RSA -out private_key.pem -pkeyopt rsa_keygen_bits:2048

# public (based on private key)
openssl rsa -pubout -in private_key.pem -out public_key.pem

Convert to base64 to be used in env variables

# private
base64 -i private_key.pem -o private_key-base64.txt

# public
base64 -i public_key.pem -o public_key-base64.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment