如何使用MakeCert.exe与现有CA

时间:2017-03-17 09:44:57

标签: ssl ssl-certificate x509certificate self-signed makecert

我需要一份证书用于我的本地开发目的,证书应该有一个有效的发行人。

我尝试the following blog来创建证书。

在博客中,我找到了一个工具MakeCert.exe来创建证书,但我无法将任何现有证书绑定为根CA.

我使用了命令makecert -ss My -n "CN=DevRoot" -cy authority -in "John" Test.cer

最后证书有一些问题

enter image description here

我需要证书和发行人应该是DevRoot。

DevRoot.cer download URL

请在这方面帮助我。

1 个答案:

答案 0 :(得分:0)

如果它仍然是实际的..
你不需要' -in' param,但应该使用' -r'因为: -r创建自签名证书。

makecert -ss My -n "CN=DevRoot" -cy authority -r Test3.cer