这似乎是一个不常见的话题,因为我找不到任何参考。
数字证书存储在商店中。
正如你在这里看到的......
个人数字证书存储在哪里?商店名称是我的,我们可以在这里看到:
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);
}