是否可以使用.net平台在Windows Server 2008上查询证书存储? 我想获得有关该系统颁发的证书的信息。
TNX grega g
答案 0 :(得分:0)
使用“已颁发的证书”,您是指 此框发出的证书,还是 此框?
无论如何,这样的事情应该让你开始玩证书商店:
using System;
using System.Security.Cryptography.X509Certificates;
class CertificateStoreSample
{
static void Main(string[] args)
{
X509Store store = new X509Store(StoreName.Root);
store.Open(OpenFlags.ReadOnly);
foreach (X509Certificate certificate in store.Certificates)
{
Console.WriteLine(certificate.Subject);
}
store.Close();
}
}