Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ThiagoBfim/eaf28d39d411cef7af7850753867e77c to your computer and use it in GitHub Desktop.
Save ThiagoBfim/eaf28d39d411cef7af7850753867e77c 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