我正在使用使用vc 6.0和cryptoAPI创建的密钥库。密钥库包含所有交换/签名密钥。所以我可以使用公钥很好地使用RSA加密数据但是当需要签名或解密数据时,我似乎无法找到如何使用私钥解密。
我看过很多网站都在使用 rsa =(RSACryptoServiceProvider)cert.PrivateKey;
但是在我的密钥库中,当我查看证书时,所有私钥都不存在。
//这就是我设置商店的方式
public cryptTest(string storeName)
{
store = new X509Store(storeName);
this.storename = storename;
}
//这就是我从商店获得证书的方式
public X509Certificate2 getCertificate(string ID, certType ct)
{
if (store == null)
{
return null;
}
store.Open(OpenFlags.ReadOnly);
foreach (X509Certificate2 cert in store.Certificates)
{
if ((ct == certType.exchange && cert.Subject.Contains("Exchange")) ||
(ct == certType.signature && cert.Subject.Contains("Signature")))
{
if (cert.Subject.Contains(ID)) // if the ID match
{
// todo check date etc ! is cert still valid if not delete etc.
store.Close();
return cert;
}
}
}
store.Close();
return null;
}
但是在证书中他们从来没有私钥,那么我怎么可能使用密钥库中的证书解密或签名?
万分感谢!
答案 0 :(得分:0)
我认为MSDN上的EncryptTo/DecryptTo: Encryption in .NET with CryptoAPI Certificate Stores文章应该有你需要的答案。