Windows 如何确定哪些证书具有私钥?

发布于 2024-10-04 00:31:33 字数 105 浏览 4 评论 0原文

当我在证书 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

征棹 2024-10-11 00:31:33

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文