Windows 如何确定哪些证书具有私钥?
当我在证书 MMC 控制台中打开某些证书时,它显示“您有与此证书对应的私钥”。 “常规”选项卡上的字符串。 Windows 如何确定哪些证书有私钥,哪些没有?我认为它应该是某个注册表项,但是哪个?
When I open some certificates in Certificates MMC console, it shows "You have a private key that corresponds to this certificate." string on "general" tab. How does Windows determine which certificates have private keys, and which don't? I think it should be some registry entry, but which?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MMC 本身使用加密 API,并将该任务委托给提供者;最有可能的是,它使用 CertificateGetCertificateContextProperty 和 CERT_KEY_CONTEXT_PROP_ID。然后,加密货币提供商使用内部策略。默认加密提供程序使用基于磁盘的密钥存储;在 Microsoft\Crypto\RSA\User SID(旧版 CSP)中或
微软\加密\密钥(CNG);请参阅有关密钥存储的 MSDN 文章。
MMC itself uses the crypto API, and delegates that task to the provider; most likely, it uses CertificateGetCertificateContextProperty with CERT_KEY_CONTEXT_PROP_ID. The crypto provider then uses an internal strategy. The default crypto provider uses disk-based key storage; in Microsoft\Crypto\RSA\User SID (legacy CSP) or
Microsoft\Crypto\Keys (CNG); see the MSDN article on key storage.