2

如何从 .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

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

4

1 回答 1

6

我还没有测试过,但是 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

于 2013-04-28T08:25:38.437 回答