Created
September 7, 2016 09:47
-
-
Save Jalalx/b871c34916889623d7c5e9cd58df2564 to your computer and use it in GitHub Desktop.
Batch script to generate Open SSL self signed certificate
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
# Batch script to generate Open SSL self signed certificate | |
openssl req -new -x509 -nodes -newkey rsa:1024 -keyout webhook_pkey.key -out webhook_cert.pem -days 3650 | |
openssl pkcs12 -export -out newfile.pfx -inkey privcert.key -in pubcert.pem -certfile CARoots.pem |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment