是否可以在 .NET 的 RSA 中使用 PGP 密钥?
我试过这段代码,没有成功。
X509Certificate2 certificate = new X509Certificate2();
certificate.Import("C:\\All Public Keys.asc");
RSACryptoServiceProvider rsa = (RSACryptoServiceProvider)certificate.PrivateKey;
如何加载此密钥?
是否可以在 .NET 的 RSA 中使用 PGP 密钥?
我试过这段代码,没有成功。
X509Certificate2 certificate = new X509Certificate2();
certificate.Import("C:\\All Public Keys.asc");
RSACryptoServiceProvider rsa = (RSACryptoServiceProvider)certificate.PrivateKey;
如何加载此密钥?