gpt4 book ai didi

c++ - CryptoAPI 中如何通过证书公钥获取 key 容器的信息?

转载 作者:太空宇宙 更新时间:2023-11-04 12:16:14 25 4
gpt4 key购买 nike

在 C# 中,我可以使用

public static CspKeyContainerInfo GetKeyConatinerInformation(X509Certificate2 certificate)
{
if (certificate == null)
throw new ArgumentNullException("certificate");

ICspAsymmetricAlgorithm key = certificate.PublicKey.Key as ICspAsymmetricAlgorithm;
if (key == null)
throw new InvalidOperationException("Unknown key type");

return key.CspKeyContainerInfo;
}

我想知道如何通过使用 C++ 和 lib CryptoAPI 来获得它

最佳答案

Here是 Mounir IDRASSI 编写的程序。这将为您提供所需的信息。

同时寻找相关答案here .

关于c++ - CryptoAPI 中如何通过证书公钥获取 key 容器的信息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7593900/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com