Skip to content

Instantly share code, notes, and snippets.

@sebw
Created July 17, 2013 07:06
Show Gist options
  • Save sebw/6018282 to your computer and use it in GitHub Desktop.
Save sebw/6018282 to your computer and use it in GitHub Desktop.
OpenSSL self sign certificate
Private key : openssl genrsa -out ssl.key 1024
Certificate : openssl req -new -x509 -days 3650 -key ssl.key -out ssl.crt
Verification : openssl x509 -in ssl.crt -text -noout
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment