如何强制 makecert 将私钥输出到文件(而不是加密存储)?
我想生成一个密钥对以在我的应用程序中使用,但从 mmc 手动导出它们很痛苦。
如何使用命令行参数,或者以其他方式最终获得驻留在硬盘驱动器上的私有证书,适合以后分发?
I want to generate a key pair for use within my applications, but exporting them manually from the mmc is a pain.
How can I use commandline parameters, or otherwise end up with a private certificate that resides on the hard drive, suitable for later distribution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看一下这篇文章: http://msdn .microsoft.com/en-us/library/bfsktky3%28VS.80%29.aspx
具体来说,使用
-sv
选项将私钥保存到文件中。Have a look at this article: http://msdn.microsoft.com/en-us/library/bfsktky3%28VS.80%29.aspx
Specifically, use the
-sv
option to save the private key to a file.