Created
March 1, 2018 19:02
-
-
Save feinoujc/ae06ba268e9bd939a5308f02715a9b24 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This will write private.pem and public.pem in the current directory | |
# The default key strenght is 2048 bits | |
# usage: | |
# # ./gen-jwt-rsa-keys.sh mykey | |
# # ls | |
# gen-jwt-rsa-keys.sh mykey-private.key mykey-public.pem | |
# first time you have to give execution permission or use bash and the filename | |
# # chmod +x gen-jwt-rsa-keys.sh | |
KEYNAME=${1:-jwtrsa} | |
openssl genrsa -out $KEYNAME-private.key 4096 && openssl rsa -in $KEYNAME-private.key -outform PEM -pubout -out $KEYNAME-public.pem |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment