Forked from vinicius-ianni/Generate Self Signed A1 Certificate.txt
Created
August 11, 2023 21:34
-
-
Save IgorDePaula/deff53adf54d8cfb9aba1a7791c54910 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