Skip to content
This repository was archived by the owner on Feb 22, 2026. It is now read-only.

Creating a Self Signed Certificate

monsieurleberre edited this page Feb 12, 2019 · 4 revisions

Using Openssl

  • Install openssl package for your operating system from here
  • Generate a private key:
openssl genrsa 2048 > private.pem
  • Generate the self signed certificate:
openssl req -x509 -new -key private.pem -out public.pem
  • Create the PFX file:
openssl pkcs12 -export -in public.pem -inkey private.pem -out mycert.pfx

Clone this wiki locally