HomeSort by relevance Sort by last modified time
    Searched defs:crls (Results 1 - 9 of 9) sorted by null

  /libcore/luni/src/main/java/org/apache/harmony/security/pkcs7/
SignedData.java 46 * crls
59 private List crls; field in class:SignedData
63 List certificates, List crls, List signerInfos) {
68 this.crls = crls;
77 return crls;
119 if (crls != null) {
120 res.append(crls.toString());
138 setOptional(4); // crls is optional
147 values[4] = sd.crls;
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/pkcs/
SignedData.java 25 private ASN1Set crls; field in class:SignedData
55 crls = _crls;
86 crls = ASN1Set.getInstance(tagged, false);
121 return crls;
139 * crls
157 if (crls != null)
159 v.add(new DERTaggedObject(false, 1, crls));
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JDKX509CertificateFactory.java 300 { // lazy evaluate to help processing of large CRLs
315 * Returns a (possibly empty) collection view of the CRLs read from
318 * The inStream may contain a sequence of DER-encoded CRLs, or
320 * only signficant field being crls. In particular the signature
328 List crls = new ArrayList(); local
332 crls.add(crl);
335 return crls;
CertPathValidatorUtilities.java 424 * Return a Collection of all CRLs found in the X509Store's that are
428 * to select the CRLs
431 * These are used to search for CRLs
439 Set crls = new HashSet(); local
455 crls.addAll(store.getMatches(crlSelect));
470 crls.addAll(store.getCRLs(crlSelect));
484 return crls;
1330 Set crls = new HashSet(); local
    [all...]
RFC3280CertPathUtilities.java 667 throw new AnnotatedException("Exception obtaining delta CRLs.", e);
715 throw new AnnotatedException("Exception obtaining complete CRLs.", e);
726 throw new AnnotatedException("Exception obtaining delta CRLs.", e);
1783 Set crls = CertPathValidatorUtilities.getCompleteCRLs(dp, cert, currentDate, paramsPKIX); local
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
CertificateFactory4Test.java 167 Collection<? extends CRL> crls = fact.generateCRLs(is); local
168 assertTrue("The CRLs in \"" + certUrl.toExternalForm()
169 + "\" were not parsed correctly", crls != null
170 && crls.size() > 0);
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
X509CertFactoryImpl.java 48 * It supports CRLs and Certificates in (PEM) ASN.1 DER encoded form,
50 * For Certificates and CRLs factory maintains the caching
318 // there were not read X.509 CRLs, so
354 List crls = data.getCRLs(); local
355 if (crls != null) {
356 for (int i = 0; i < crls.size(); i++) {
358 (CertificateList) crls.get(i)));
    [all...]
  /external/openssl/crypto/x509/
x509_vfy.h 238 STACK_OF(X509_CRL) *crls; /* set of CRLs passed in */ member in struct:x509_store_ctx_st
366 /* Lookup CRLs */
368 /* Lookup CRLs for whole chain */
386 /* Extended CRL features such as indirect CRLs, alternate CRL signing keys */
  /external/openssl/include/openssl/
x509_vfy.h 238 STACK_OF(X509_CRL) *crls; /* set of CRLs passed in */ member in struct:x509_store_ctx_st
366 /* Lookup CRLs */
368 /* Lookup CRLs for whole chain */
386 /* Extended CRL features such as indirect CRLs, alternate CRL signing keys */

Completed in 1532 milliseconds