关于我的企业项目(仅限 Intranet),我遇到了一个使用 .net 验证证书的问题System.Security.Cryptography.X509Certificates
步骤 1:创建根证书
用于makecert
创建根证书并将其安装到受信任的根证书颁发机构
makecert -r -pe -n "CN=Test Labs (CA)" -ss CA -sr CurrentUser -a sha256 -cy authority -sky signature -sv TestLabCA.pvk TestLabCA.cer
pvk2pfx -pvk TestLabCA.pvk -spc TestLabCA.cer -pfx TestLabCA.pfx
第 2 步:创建证书并使用根证书对其进行签名
用于makecert
创建证书,使用根证书对其进行签名并将其安装到受信任的发布者
makecert -pe -n "CN=Test Labs (SPC)" -a sha256 -cy end -sky signature -ic TestLabCA.cer -iv TestLabCA.pvk -sv TestLabSPC.pvk TestLabSPC.cer
pvk2pfx -pvk TestLabSPC.pvk -spc TestLabSPC.cer -pfx TestLabSPC.pfx
第 3 步:在代码中验证
这是验证证书的 C# 代码示例:
X509Certificate2 rootCertificate = new X509Certificate2("TestLabCA.cer");
X509Certificate2 certificate = new X509Certificate2("TestLabSPC.cer");
// will return true
Console.WriteLine("{0}, verified = {1}", rootCertificate.GetName(), rootCertificate.Verify());
// will return false
Console.WriteLine("{0}, verified = {1}", certificate.GetName(), certificate.Verify());
// validate the chain
var chain = new X509Chain();
chain.Build(certificate);
Console.WriteLine("{0}, verified root of chain = {1}", certificate.GetName(), chain.ChainElements[chain.ChainElements.Count-1].Certificate.Verify());
问题:
如果我想验证证书,是否必须检查链并验证链中的最后一个,假设这是根证书?
有更好的方法吗?