Last active
August 28, 2015 18:35
-
-
Save dennisfoconnor/b5c39958e589f61431d6 to your computer and use it in GitHub Desktop.
Openssl commands
This file contains 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
#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