HomeSort by relevance Sort by last modified time
    Searched full:crls (Results 1 - 25 of 55) sorted by null

1 2 3

  /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...]
  /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/x509/
X509CRLStoreSelector.java 68 * CRLs that would be relevant when checking revocation for the specified
169 * Returns if this selector must match CRLs with the delta CRL indicator
172 * @return Returns <code>true</code> if only CRLs with the delta CRL
241 * If <code>true</code> only complete CRLs are returned. Defaults to
244 * @return <code>true</code> if only complete CRLs are returned.
252 * If set to <code>true</code> only complete CRLs are returned.
257 * @param completeCRLEnabled <code>true</code> if only complete CRLs
280 * This is only meaningful for delta CRLs. Complete CRLs must have a CRL
314 * the CRL. Delta CRLs and complete CRLs must have matching issuin
    [all...]
ExtendedPKIXParameters.java 169 * @return Returns if delta CRLs should be used.
177 * Sets if delta CRLs should be used for checking the revocation status.
179 * @param useDeltas <code>true</code> if delta CRLs should be used.
215 * Sets the Bouncy Castle Stores for finding CRLs, certificates, attribute
247 * Adds a Bouncy Castle {@link Store} to find CRLs, certificates, attribute
269 * Adds an additional Bouncy Castle {@link Store} to find CRLs, certificates,
274 * during X.509 object processing, e.g. in certificates or CRLs. This method
300 * <code>Store</code>s used for finding CRLs, certificates, attribute
315 * <code>Store</code>s used for finding CRLs, certificates, attribute
356 * in certificates or CRLs should be used
    [all...]
  /external/openssl/apps/
verify.c 75 STACK_OF(X509_CRL) *crls, ENGINE *e);
87 STACK_OF(X509_CRL) *crls = NULL;
219 crls = load_crls(bio_err, crlfile, FORMAT_PEM,
220 NULL, e, "other CRLs");
221 if(!crls)
225 if (argc < 1) check(cert_ctx, NULL, untrusted, trusted, crls, e);
228 check(cert_ctx,argv[i], untrusted, trusted, crls, e);
250 sk_X509_CRL_pop_free(crls, X509_CRL_free);
257 STACK_OF(X509_CRL) *crls, ENGINE *e)
281 if (crls)
    [all...]
pkcs7.c 246 STACK_OF(X509_CRL) *crls=NULL;
253 crls=p7->d.sign->crl;
257 crls=p7->d.signed_and_enveloped->crl;
277 if (crls != NULL)
281 for (i=0; i<sk_X509_CRL_num(crls); i++)
283 crl=sk_X509_CRL_value(crls,i);
  /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/java/security/cert/
CRL.java 21 * This class represents Certificate Revocation Lists (CRLs) maintained by a
CertificateFactorySpi.java 84 * the stream from which the data is read to create the CRLs.
85 * @return a collection of CRLs.
X509CRLSelector.java 161 * {@link #addIssuerName(byte[])} instead. It can fail to match some CRLs
258 * Sets a certificate hint to find CRLs. It's not a criterion but may help
259 * finding relevant CRLs.
351 * Returns the certificate hint to find CRLs. It's not a criterion but may
352 * help finding relevant CRLs.
CertificateFactory.java 36 * <i>Certificate Revocation Lists</i> (CRLs).
300 * the stream from which the data is read to create the CRLs.
301 * @return an initialized collection of CRLs.
CollectionCertStoreParameters.java 27 * retrieve the certificates and CRLs from.
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
X509CRLTest.java 191 assertEquals("The CRLs with equal encoded form should be equal",
197 assertEquals("The CRLs with equal encoded form should be equal",
206 assertFalse("The CRLs with differing encoded form should not be equal",
CollectionCertStoreParametersTest.java 113 * CRLs from the Collection, thus changing the set of Certificates or CRLs
  /libcore/luni/src/test/java/tests/security/cert/
X509CRLTest.java 219 assertEquals("The CRLs with equal encoded form should be equal",
225 assertEquals("The CRLs with equal encoded form should be equal",
234 assertFalse("The CRLs with differing encoded form should not be equal",
X509CRLSelector2Test.java 61 * addIssuer(X500Principal issuer) method testing. Tests if CRLs with
83 * addIssuerName(String name) method testing. Tests if CRLs with specified
115 * setIssuerNames(Collection <?> names) method testing. Tests if CRLs with
165 * CRLs with any issuers match the selector in the case of null issuerNames
197 * addIssuerName(byte[] name) method testing. Tests if CRLs with specified
235 * setMinCRLNumber(BigInteger minCRL) method testing. Tests if CRLs with any
259 * setMaxCRLNumber(BigInteger maxCRL) method testing. Tests if CRLs with any
283 * setDateAndTime(Date dateAndTime) method testing. Tests if CRLs with any
  /external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/
X509CRLSelectorTest.java 181 * Tests if CRLs with any issuers match the selector in the case of
213 * Tests if CRLs with any issuers match the selector in the case of
259 * Tests if CRLs with specified issuers match the selector,
281 * Tests if CRLs with specified issuers match the selector,
313 * Tests if CRLs with specified issuers match the selector,
351 * Tests if CRLs with any crl number value match the selector in the case of
373 * Tests if CRLs with any crl number value match the selector in the case of
395 * Tests if CRLs with any update dates match the selector in the case of
  /external/openssl/crypto/store/
README 8 generation of certain objects (for example, keys and CRLs).
62 generate_object - for example to generate keys and CRLs
  /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 */
x509_vfy.c 127 X509_CRL *base, STACK_OF(X509_CRL) *crls);
821 STACK_OF(X509_CRL) *crls)
829 for (i = 0; i < sk_X509_CRL_num(crls); i++)
831 crl = sk_X509_CRL_value(crls, i);
858 get_delta_sk(ctx, pdcrl, pscore, best_crl, crls);
944 X509_CRL *base, STACK_OF(X509_CRL) *crls)
952 for (i = 0; i < sk_X509_CRL_num(crls); i++)
954 delta = sk_X509_CRL_value(crls, i);
987 /* Reason codes or indirect CRLs need extended CRL support */
1118 crl_ctx.crls = ctx->crls
    [all...]
  /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 */
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/
X509Principal.java 17 * Objects of this type can be created from certificates and CRLs using the

Completed in 3776 milliseconds

1 2 3