作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试枚举服务器上的证书存储并获取有关每个证书的信息。该代码工作正常,只是它缺少在“中间证书颁发机构”存储中找到的所有证书。
string[] stores = new string[] { "AddressBook", "AuthRoot", "CertificateAuthority", "Disallowed", "My", "Root", "TrustedPeople", "TrustedPublisher" };
for (int x = 0; x < stores.Length; x++)
{
X509Store store = new X509Store(stores[x],StoreLocation.LocalMachine);
store.Open(OpenFlags.ReadOnly);
foreach (X509Certificate2 mCert in store.Certificates)
{
//handle certificates
}
}
最佳答案
我最终让它开始工作,出于某种原因,对于除“CertificateAuthority”之外的每个商店,您都可以像我在原始代码 (stores[x]) 中那样传递名称。对于“CertificateAuthority”,我必须明确传递“Store.CertificateAuthority”。我觉得这是 X509Store 类中的错误。
//Old Code
string[] stores = new string[] { "AddressBook", "AuthRoot", "CertificateAuthority" "Disallowed", "My", "Root", "TrustedPeople", "TrustedPublisher" };
X509Store store = new X509Store(stores[x],StoreLocation.LocalMachine);
//New Code
X509Store store2= new X509Store(StoreName.CertificateAuthority, StoreLocation.LocalMachine);
关于c# - 枚举证书问题 (X509Certificate2),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9068807/
我是一名优秀的程序员,十分优秀!