HomeSort by relevance Sort by last modified time
    Searched defs:crls (Results 1 - 20 of 20) 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/bcprov/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/bcprov/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;
CertPathValidatorUtilities.java 1219 Set crls = CRL_UTIL.findCRLs(crlselect, paramsPKIX, currentDate); local
    [all...]
RFC3280CertPathUtilities.java 667 throw new AnnotatedException("Exception obtaining delta CRLs.", e);
706 throw new AnnotatedException("Exception obtaining delta CRLs.", e);
1754 Set crls = CertPathValidatorUtilities.getCompleteCRLs(dp, cert, currentDate, paramsPKIX); local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
SignedData.java 28 private ASN1Set crls; field in class:SignedData
52 ASN1Set crls,
55 this.version = calculateVersion(contentInfo.getContentType(), certificates, crls, signerInfos);
59 this.crls = crls;
61 this.crlsBer = crls instanceof BERSet;
69 // ((crls is present) AND
70 // (any crls with a type of other are present))
87 ASN1Set crls,
125 if (crls != null) // no need to check if otherCert is tru
    [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/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSSignedGenerator.java 106 protected List crls = new ArrayList(); field in class:CMSSignedGenerator
192 * add the certificates and CRLs contained in the given CertStore
197 * @param certStore CertStore containing the public key certificates and CRLs
207 crls.addAll(CMSUtils.getCRLsFromStore(certStore));
221 crls.addAll(CMSUtils.getCRLsFromStore(crlStore));
CMSUtils.java 139 List crls = new ArrayList(); local
147 crls.add(CertificateList.getInstance(ASN1Primitive.fromByteArray(c.getEncoded())));
150 return crls;
154 throw new CMSException("error processing crls", e);
158 throw new CMSException("error processing crls", e);
162 throw new CMSException("error encoding crls", e);
CMSSignedData.java 339 * return a X509Store containing CRLs, if any, contained
344 * @return a store of CRLs
359 * return a X509Store containing CRLs, if any, contained
364 * @return a store of CRLs
383 * return a CertStore containing the certificates and CRLs associated with
400 * return a CertStore containing the certificates and CRLs associated with
604 * @param certsAndCrls the new certificates and CRLs to be used.
619 // replace the certs and crls in the SignedData object
622 ASN1Set crls = null; local
644 crls = set
    [all...]
CMSSignedHelper.java 257 List crls = new ArrayList(); local
261 addCRLsFromSet(crls, crlSet, provider);
267 "CRL/" +type, new X509CollectionStoreParameters(crls), provider);
362 private void addCRLsFromSet(List crls, ASN1Set certSet, Provider provider)
390 crls.add(cf.generateCRL(
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
CertificateFactory.java 297 { // lazy evaluate to help processing of large CRLs
312 * Returns a (possibly empty) collection view of the CRLs read from
315 * The inStream may contain a sequence of DER-encoded CRLs, or
317 * only signficant field being crls. In particular the signature
325 List crls = new ArrayList(); local
329 crls.add(crl);
332 return crls;
  /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 */
  /tools/motodev/src/plugins/certmanager/lib/
bcpkix-jdk15on-147.jar 
bcprov-jdk15on-147.jar 
  /prebuilts/sdk/tools/lib/
signapk.jar 

Completed in 498 milliseconds