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

  /libcore/luni/src/main/java/org/apache/harmony/security/pkcs7/
SignedData.java 46 * crls
55 private final List<CertificateList> crls; field in class:SignedData
59 List<Certificate> certificates, List<CertificateList> crls,
65 this.crls = crls;
74 return crls;
99 if (crls != null) {
100 res.append(crls.toString());
118 setOptional(4); // crls is optional
127 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/
PKIXCRLUtil.java 36 throw new AnnotatedException("Exception obtaining complete CRLs.", e);
85 throw new AnnotatedException("Exception obtaining complete CRLs.", e);
92 * Return a Collection of all CRLs found in the X509Store's that are
96 * to select the CRLs
99 * These are used to search for CRLs
107 Set crls = new HashSet(); local
123 crls.addAll(store.getMatches(crlSelect));
138 crls.addAll(store.getCRLs(crlSelect));
152 return crls;
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 1196 Set crls = CRL_UTIL.findCRLs(crlselect, paramsPKIX, currentDate); local
    [all...]
RFC3280CertPathUtilities.java 668 throw new AnnotatedException("Exception obtaining delta CRLs.", e);
707 throw new AnnotatedException("Exception obtaining delta CRLs.", e);
1755 Set crls = CertPathValidatorUtilities.getCompleteCRLs(dp, cert, currentDate, paramsPKIX); local
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
CertificateFactory4Test.java 138 Collection<? extends CRL> crls = fact.generateCRLs(is); local
139 assertTrue("The CRLs in \"" + certUrl.toExternalForm()
140 + "\" were not parsed correctly", crls != null
141 && crls.size() > 0);
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertificateFactory4Test.java 135 Collection crls = fact.generateCRLs(is); local
136 assertTrue("The CRLs in \"" + certUrl.toExternalForm()
137 + "\" were not parsed correctly", crls != null
138 && crls.size() > 0);
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/cert/
CertificateFactory_ImplTest.java 53 * Certificates and CRLs.
208 * The public key to verify generated Certificates and CRLs.
255 * Generates CRLs on the base of PKCS7 SignedData Object
260 // Testing the CRLs generation on the base of PKCS7 SignedData object
264 Collection crls = factory.generateCRLs(bais); local
265 assertNotNull("Factory returned null on correct PKCS7 data", crls);
267 2, crls.size());
271 for (Iterator i = crls.iterator(); i.hasNext();) {
299 * Generates CRLs on the base of PEM encoding.
339 private void verifyCRLs(Collection crls) throws Exception
446 Collection crls = local
565 Collection crls = factory.generateCRLs(bais); local
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
X509CertFactoryImpl.java 49 * It supports CRLs and Certificates in (PEM) ASN.1 DER encoded form,
51 * For Certificates and CRLs factory maintains the caching
317 // there were not read X.509 CRLs, so
353 List<CertificateList> crls = data.getCRLs(); local
354 if (crls != null) {
355 for (CertificateList crl : crls) {
    [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 441 milliseconds