如何在 C# 中以编程方式启用强大的私钥保护?
使用 C# 以编程方式添加 X509Certificate2 时,如何实现相当于在 certmgr.msc 中设置“强私钥保护”复选框的效果?
How can I achieve the equivalent of setting the "strong private key protection" checkbox in certmgr.msc when adding an X509Certificate2 programmatically using C#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须设置
X509KeyStorageFlags< /code>
相应地导入证书(即 <代码>MachineKeySet
和UserProtected
)。You will have to setup the
X509KeyStorageFlags
accordingly when importing the certificate (i.e.MachineKeySet
andUserProtected
).