我的证书验证有问题。我有.perm文件女巫是链证书文件(里面有多个BEGIN和END CERTIFICATE)。
我尝试导入证书集合但导入集合后的长度为1。
X509Certificate2Collection collection = new X509Certificate2Collection();
collection.Import(certpath);
我在
中看不到任何有趣的选项X509Chain chain2 = new X509Chain();
我返回验证错误,我相信原因是并非所有证书都已加载。
以下是我的完整验证方法
private static bool ValidateServerCertificate(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors)
{
try
{
string certpath = "actual path";
X509Certificate2Collection collection = new X509Certificate2Collection();
collection.Import(certpath);
X509Chain chain2 = new X509Chain();
foreach(X509Certificate2 c in collection)
{
chain2.ChainPolicy.ExtraStore.Add(c);
}
// Check all properties
chain2.ChainPolicy.VerificationFlags = X509VerificationFlags.NoFlag;
// This setup does not have revocation information
chain2.ChainPolicy.RevocationMode = X509RevocationMode.NoCheck;
// Build the chain
chain2.Build(new X509Certificate2(certificate));
// Are there any failures from building the chain?
if (chain2.ChainStatus.Length == 0)
return true;
// If there is a status, verify the status is NoError
bool result = chain2.ChainStatus[0].Status == X509ChainStatusFlags.NoError;
return result;
}
catch (Exception ex)
{
Console.WriteLine(ex);
}
return false;
}
答案 0 :(得分:1)
X509Certificate2Collection
和Import
方法不支持包含多个证书的文件(一个接一个地附加)。请参阅此方法的文档here。
有一种格式可能有用 - SerializedStore
但是文档没有说明多少。我认为它是SerializedCert
aray的一个王者,它是具有它属性的证书,因此即使这种格式与你所拥有的格式不匹配。
尝试分隔证书并使用this constructor初始化X509Certificate2Collection
。