Home | History | Annotate | Download | only in cert

Lines Matching defs:crl

65     private final CertificateList crl;
80 // encoded form of crl
85 // indicates whether the crl entries have already been retrieved
86 // from CertificateList object (crl)
89 // indicates whether this X.509 CRL is direct or indirect
92 // if crl is indirect, this field holds an info about how
94 // by the same issuer as CRL.
98 * Creates X.509 CRL by wrapping of the specified CertificateList object.
100 public X509CRLImpl(CertificateList crl) {
101 this.crl = crl;
102 this.tbsCertList = crl.getTbsCertList();
107 * Creates X.509 CRL on the base of ASN.1 DER encoded form of
108 * the CRL (CertificateList structure described in RFC 3280)
115 this.crl = (CertificateList) CertificateList.ASN1.decode(in);
116 this.tbsCertList = crl.getTbsCertList();
124 * Creates X.509 CRL on the base of ASN.1 DER encoded form of
125 * the CRL (CertificateList structure described in RFC 3280)
143 encoding = crl.getEncoded();
197 * Retrieves the crl entries (TBSCertList.RevokedCertificate objects)
209 // null means that revoked certificate issuer is the same as CRL issuer
216 // certificate issuer differs from CRL issuer
217 // and CRL is indirect.
221 // list are issued by the same issuer as issuer of CRL
230 * Searches for certificate in CRL.
231 * This method supports indirect CRLs: if CRL is indirect method takes
233 * if CRL issued by CA (i.e. it is not indirect) search is done only
250 // search in indirect crl
253 // certificate issuer is CRL issuer
264 // certificate issuer is not a CRL issuer, so
270 // both certificates was issued by CRL issuer
276 // search in CA's (non indirect) crl: just look up the serial number
288 * Method searches for CRL entry with specified serial number.
289 * The method will search only certificate issued by CRL's issuer.
343 signature = crl.getSignatureValue();
410 if (!signature.verify(crl.getSignatureValue())) {
428 if (!signature.verify(crl.getSignatureValue())) {
434 // ------ java.security.cert.CRL abstract method implementations -------
438 * @see java.security.cert.CRL#isRevoked(Certificate)
449 * @see java.security.cert.CRL#toString()
453 return crl.toString();