本文整理汇总了C#中Org.BouncyCastle.X509.X509Crl.IsRevoked方法的典型用法代码示例。如果您正苦于以下问题:C# X509Crl.IsRevoked方法的具体用法?C# X509Crl.IsRevoked怎么用?C# X509Crl.IsRevoked使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Org.BouncyCastle.X509.X509Crl
的用法示例。
在下文中一共展示了X509Crl.IsRevoked方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Verify
/**
* Verifies a certificate against a single CRL.
* @param crl the Certificate Revocation List
* @param signCert a certificate that needs to be verified
* @param issuerCert its issuer
* @param signDate the sign date
* @return true if the verification succeeded
* @throws GeneralSecurityException
*/
public bool Verify(X509Crl crl, X509Certificate signCert, X509Certificate issuerCert, DateTime signDate)
{
if (crl == null || signDate == DateTime.MaxValue)
return false;
// We only check CRLs valid on the signing date for which the issuer matches
if (crl.IssuerDN.Equals(signCert.IssuerDN)
&& signDate.CompareTo(crl.ThisUpdate) > 0 && signDate.CompareTo(crl.NextUpdate.Value) < 0) {
// the signing certificate may not be revoked
if (IsSignatureValid(crl, issuerCert) && crl.IsRevoked(signCert)) {
throw new VerificationException(signCert, String.Format("{0} The certificate has been revoked.", signCert));
}
return true;
}
return false;
}