使用 makecert 制作可导出的私钥
我需要为我的服务生成一个证书,并提供受信任的根证书。 我尝试使用私钥生成证书: makecert -pe -sk Esb -iv root.pvk -n "CN=localhost" -ic root.cer -sky Exchange -ss my serviceCert.cer
这会将证书安装到我的商店中,但是当我尝试导出它,它说“关联的私钥被标记为不可导出makecert”。我做错了什么?
I need to generate a cerificate for my service given a trusted root certificate.
I tried to generate a certificate with private key:makecert -pe -sk Esb -iv root.pvk -n "CN=localhost" -ic root.cer -sky exchange -ss my serviceCert.cer
This installs a certificate into my store, but when I try to export it, it says "the associated private key is marked as not exportable makecert". What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我本来建议使用“-pe”选项,但你已经有了。也许尝试“-sv选项”将私钥输出为PVK文件,然后使用pvk2pfx制作pfx文件。
I was going to suggest using the "-pe" option but you already have. Maybe try the "-sv option" to output the private key as a PVK file then use pvk2pfx to make a pfx file.