Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save vinicius-ianni/5f30b8504e3dabfb33f3bd7beb57bd5a to your computer and use it in GitHub Desktop.
Save vinicius-ianni/5f30b8504e3dabfb33f3bd7beb57bd5a to your computer and use it in GitHub Desktop.
Generate Self Signed A1 Certificate
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