Home | History | Annotate | Download | only in provider

Lines Matching defs:crl

1330             X509CRL crl = (X509CRL)crl_iter.next();
1332 if (cert.getNotAfter().after(crl.getThisUpdate()))
1334 if (crl.getNextUpdate() == null
1335 || validDate.before(crl.getNextUpdate()))
1348 "Issuer certificate keyusage extension does not permit crl signing.\n" + sign);
1354 crl.verify(workingPublicKey, "BC");
1358 throw new AnnotatedException("can't verify CRL: " + e, e);
1361 crl_entry = crl.getRevokedCertificate(cert.getSerialNumber());
1389 DERObject idp = CertPathValidatorUtilities.getExtensionValue(crl, ISSUING_DISTRIBUTION_POINT);
1390 DERObject dci = CertPathValidatorUtilities.getExtensionValue(crl, DELTA_CRL_INDICATOR);
1398 baseSelect.addIssuerName(CertPathValidatorUtilities.getIssuerPrincipal(crl).getEncoded());
1406 baseSelect.setMaxCRLNumber(((DERInteger)CertPathValidatorUtilities.getExtensionValue(crl, CRL_NUMBER)).getPositiveValue().subtract(BigInteger.valueOf(1)));
1436 throw new AnnotatedException("No base CRL for delta CRL");
1447 throw new AnnotatedException("CA Cert CRL only contains user certificates");
1452 throw new AnnotatedException("End CRL only contains CA certificates");
1465 throw new AnnotatedException("no valid CRL found");