Showing posts with label https. Show all posts
Showing posts with label https. Show all posts

Monday, March 7, 2016

Creating self signed certificates with makecert.exe for development

Creating self signed certificates with makecert.exe for development


makecert.exe ^
-n "CN=CARoot" ^
-r ^
-pe ^
-a sha512 ^
-len 4096 ^
-cy authority ^
-sv CARoot.pvk ^
CARoot.cer

pvk2pfx.exe ^
-pvk CARoot.pvk ^
-spc CARoot.cer ^
-pfx CARoot.pfx ^
-po Test123



Source