检索生成的 CSR 的私钥
我使用 certenroll 对象创建 CSR。 主密钥是在同一台机器上创建的(C证书存储)。
如何检索存储在本地存储中以生成 CSR 的主键。
I am create CSR using certenroll object.
Primary key is created on the same machine(Ccertificate store).
How to retrieve primary key which is stored on local store for the CSR generated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从 X509Certificate2 获取私钥。私钥。
此外,X509Certificate 还提供导出为各种格式(包括 pfx)的方法。
You can get the private key from X509Certificate2.PrivateKey.
Also, X509Certificate offers methods to export as various formats including pfx.