gpt4 book ai didi

c# - 从 .pfx 文件导入私钥

转载 作者:行者123 更新时间:2023-12-01 20:26:27 27 4
gpt4 key购买 nike

如何从 .pfx 文件导入证书的私钥?我有这个代码:

        X509Certificate2 cert = new X509Certificate2("C:/amazon.pfx", "hello", X509KeyStorageFlags.Exportable | X509KeyStorageFlags.PersistKeySet);
string private_key = cert.PrivateKey.ToString();
Console.WriteLine(private_key);

但是,输出是:

System.Security.Cryptography.RSACryptoServiceProvider

如何获取字符串格式的私钥?

最佳答案

我还没有测试过,但 MSDN 文档说您可以使用以下代码获取私钥

string private_key = cert.PrivateKey.ToXmlString(false);
Console.WriteLine(private_key);

http://msdn.microsoft.com/de-de/library/system.security.cryptography.x509certificates.x509certificate2.privatekey.aspx

关于c# - 从 .pfx 文件导入私钥,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16260984/

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