Searched defs:crls (Results 1 - 17 of 17) sorted by relevance

/external/boringssl/src/crypto/pkcs7/
H A Dpkcs7_x509.c65 CBS signed_data, crls; local
85 if (!CBS_get_asn1(&signed_data, &crls,
91 while (CBS_len(&crls) > 0) {
96 if (!CBS_get_asn1_element(&crls, &crl_data, CBS_ASN1_SEQUENCE)) {
206 const STACK_OF(X509_CRL) *crls = arg;
216 for (i = 0; i < sk_X509_CRL_num(crls); i++) {
217 X509_CRL *crl = sk_X509_CRL_value(crls, i);
231 int PKCS7_bundle_CRLs(CBB *out, const STACK_OF(X509_CRL) *crls) { argument
232 return pkcs7_bundle(out, pkcs7_bundle_crls_cb, crls);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
H A DSignedData.java26 private ASN1Set crls; field in class:SignedData
56 crls = _crls;
87 crls = ASN1Set.getInstance(tagged, false);
122 return crls;
140 * crls
158 if (crls != null)
160 v.add(new DERTaggedObject(false, 1, crls));
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
H A DSignedData.java28 * crls [1] IMPLICIT CertificateRevocationLists OPTIONAL,
41 * ((crls is present) AND
42 * (any crls with a type of other are present))
70 private ASN1Set crls; field in class:SignedData
108 ASN1Set crls,
111 this.version = calculateVersion(contentInfo.getContentType(), certificates, crls, signerInfos);
115 this.crls = crls;
117 this.crlsBer = crls instanceof BERSet;
125 ASN1Set crls,
104 SignedData( ASN1Set digestAlgorithms, ContentInfo contentInfo, ASN1Set certificates, ASN1Set crls, ASN1Set signerInfos) argument
122 calculateVersion( ASN1ObjectIdentifier contentOid, ASN1Set certs, ASN1Set crls, ASN1Set signerInfs) argument
[all...]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DCMSSignedGenerator.java87 protected List crls = new ArrayList(); field in class:CMSSignedGenerator
141 crls.add(crl.toASN1Structure());
154 crls.addAll(CMSUtils.getCRLsFromStore(crlStore));
194 // crls.add(new DERTaggedObject(false, 1, new OtherRevocationInfoFormat(otherRevocationInfoFormat, otherRevocationInfo)));
207 // crls.addAll(CMSUtils.getOthersFromStore(otherRevocationInfoFormat, otherRevocationInfos));
/external/boringssl/src/crypto/x509/
H A Dx509_test.cc468 const std::vector<X509_CRL *> &crls) {
473 for (auto crl : crls) {
485 const std::vector<X509_CRL *> &crls,
491 bssl::UniquePtr<STACK_OF(X509_CRL)> crls_stack(CRLsToStack(crls));
541 const std::vector<X509_CRL *> &crls,
543 const int r1 = Verify(leaf, roots, intermediates, crls, flags, false);
544 const int r2 = Verify(leaf, roots, intermediates, crls, flags, true);
467 CRLsToStack( const std::vector<X509_CRL *> &crls) argument
483 Verify(X509 *leaf, const std::vector<X509 *> &roots, const std::vector<X509 *> &intermediates, const std::vector<X509_CRL *> &crls, unsigned long flags, bool use_additional_untrusted) argument
539 Verify(X509 *leaf, const std::vector<X509 *> &roots, const std::vector<X509 *> &intermediates, const std::vector<X509_CRL *> &crls, unsigned long flags = 0) argument
H A Dx509_vfy.c132 STACK_OF(X509_CRL) *crls);
1008 STACK_OF(X509_CRL) *crls)
1017 for (i = 0; i < sk_X509_CRL_num(crls); i++) {
1018 crl = sk_X509_CRL_value(crls, i);
1054 get_delta_sk(ctx, pdcrl, pscore, best_crl, crls);
1136 X509_CRL *base, STACK_OF(X509_CRL) *crls)
1144 for (i = 0; i < sk_X509_CRL_num(crls); i++) {
1145 delta = sk_X509_CRL_value(crls, i);
1308 crl_ctx.crls = ctx->crls;
1006 get_crl_sk(X509_STORE_CTX *ctx, X509_CRL **pcrl, X509_CRL **pdcrl, X509 **pissuer, int *pscore, unsigned int *preasons, STACK_OF(X509_CRL) *crls) argument
1135 get_delta_sk(X509_STORE_CTX *ctx, X509_CRL **dcrl, int *pscore, X509_CRL *base, STACK_OF(X509_CRL) *crls) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DCertPathValidatorUtilities.java1116 Set crls = CRL_UTIL.findCRLs(crlSelect, validityDate, paramsPKIX.getCertStores(), paramsPKIX.getCRLStores());
1118 checkCRLsNotEmpty(crls, cert);
1120 return crls;
1340 static void checkCRLsNotEmpty(Set crls, Object cert) argument
1343 if (crls.isEmpty())
/external/boringssl/include/openssl/
H A Dx509_vfy.h221 STACK_OF(X509_CRL) *crls; /* set of CRLs passed in */ member in struct:x509_store_ctx_st
/external/boringssl/src/include/openssl/
H A Dx509_vfy.h221 STACK_OF(X509_CRL) *crls; /* set of CRLs passed in */ member in struct:x509_store_ctx_st
/external/nist-pkits/src/libcore/java/security/cert/
H A DX509CertificateNistPkitsTest.java114 final String fileName = "nist-pkits/crls/" + name;
128 X509CRL[] crls = new X509CRL[names.length];
131 crls[i] = getCRL(f, names[i]);
134 return crls;
145 X509CRL[] crls = getCRLs(f, pathCRLs);
149 certCollection.addAll(Arrays.asList(crls));
170 private void assertInvalidPath(String trustAnchor, String[] certs, String[] crls) argument
172 assertInvalidPath(trustAnchor, certs, certs, crls);
176 String[] crls) throws Exception, NoSuchAlgorithmException,
180 PKIXParameters params = getTestPathParams(f, trustAnchor, certs, crls);
175 assertInvalidPath(String trustAnchor, String[] path, String[] certs, String[] crls) argument
192 assertValidPath(String trustAnchor, String[] certs, String[] crls) argument
198 assertValidPath(String trustAnchor, String[] path, String[] certs, String[] crls) argument
[all...]
/external/google-tv-pairing-protocol/java/jar/
H A Dbcprov-jdk15-143.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA META ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 452 milliseconds