0

I need a Certificate for my local development purpose, the certificate should have a valid Issuer.

I tried the following blog to create a Certificate.

In the blog I found a tool MakeCert.exe to create a Certificate but I can't able to bind any existing Certificate as a Root CA.

I used the Command makecert -ss My -n "CN=DevRoot" -cy authority -in "John" Test.cer

Finally the certificate has some issue

enter image description here

I need a Certificate and Issuer should be DevRoot.

DevRoot.cer download URL.

Kindly assist me in this regards.

Koby Douek
  • 16,156
  • 19
  • 74
  • 103
B.Balamanigandan
  • 4,713
  • 11
  • 68
  • 130

1 Answers1

0

in case it is still actual..
you don't need '-in' param, but should use '-r' because : -r Creates a self-signed certificate.

makecert -ss My -n "CN=DevRoot" -cy authority -r Test3.cer
Igor O
  • 31
  • 3