Forked from wellington1993/Generate Self Signed A1 Certificate.txt
Created
June 15, 2018 12:34
-
-
Save vinicius-ianni/5f30b8504e3dabfb33f3bd7beb57bd5a to your computer and use it in GitHub Desktop.
Generate Self Signed A1 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
openssl genrsa 2048 > private.pem | |
openssl req -x509 -new -key private.pem -out public.pem | |
openssl pkcs12 -export -in public.pem -inkey private.pem -out mycert.pfx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment