-
Notifications
You must be signed in to change notification settings - Fork 9
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
Catalyst Network