Skip to content

Creating a Self Signed Certificate

franssl edited this page Jul 15, 2019 · 4 revisions
  • Install openssl package for your operating system.

  • Generating a private key: openssl genrsa 2048 > private.pem

  • Generating the self signed certificate: openssl req -x509 -new -key private.pem -out public.pem

  • If required, creating PFX: openssl pkcs12 -export -in public.pem -inkey private.pem -out .Catalyst/mycert.pfx

Clone this wiki locally