0

这似乎是一个不常见的话题,因为我找不到任何参考。

数字证书存储在商店中。

正如你在这里看到的......

如何以编程方式删除受信任的根证书颁发机构中的证书?

个人数字证书存储在哪里?商店名称是我的,我们可以在这里看到:

http://msdn.microsoft.com/en-us/library/system.security.cryptography.x509certificates.storename.aspx

但是我需要找到文件本身的位置来以编程方式操作证书。

编辑

我也试图以这种方式打印我的证书名称和路径,但我什么也没打印:

X509Store store = new X509Store(StoreName.My, StoreLocation.CurrentUser);
X509Certificate2Collection storecollection = 
      (X509Certificate2Collection)store.Certificates;

Console.WriteLine("Store name: {0}", store.Name);
Console.WriteLine("Store location: {0}", store.Location);
foreach (X509Certificate2 x509 in storecollection)
{
  Console.WriteLine("certificate name: {0}",x509.Subject);
}
4

1 回答 1

1

据我所知,没有个人证书的物理文件。

关于第二个问题:您缺少Openstore.Open(OpenFlags.ReadWrite);. 请参阅 MSDN X509Store上的完整示例。

于 2012-11-30T17:12:22.743 回答