Skip to content

Instantly share code, notes, and snippets.

@dennisfoconnor
Last active August 28, 2015 18:35
Show Gist options
  • Save dennisfoconnor/b5c39958e589f61431d6 to your computer and use it in GitHub Desktop.
Save dennisfoconnor/b5c39958e589f61431d6 to your computer and use it in GitHub Desktop.
Openssl commands
#Generate Key
openssl genrsa -out mydomain.key 2048
#Generate CSR
openssl req -new -sha256 -key mydomain.key -out mydomain.csr
#Verify CSR
openssl req -noout -text -in mydomain.csr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment