HomeSort by relevance Sort by last modified time
    Searched full:certs (Results 101 - 125 of 450) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
RFC3280CertPathUtilities.java 458 // get CRL signing certs
518 List certs = builder.build(params).getCertPath().getCertificates(); local
520 validKeys.add(CertPathValidatorUtilities.getNextWorkingKey(certs, 0));
866 List certs = certPath.getCertificates(); local
867 X509Certificate cert = (X509Certificate)certs.get(index);
868 int n = certs.size()
1050 List certs = certPath.getCertificates(); local
1126 List certs = certPath.getCertificates(); local
1155 List certs = certPath.getCertificates(); local
1256 List certs = certPath.getCertificates(); local
1459 List certs = certPath.getCertificates(); local
1537 List certs = certPath.getCertificates(); local
1592 List certs = certPath.getCertificates(); local
1646 List certs = certPath.getCertificates(); local
2027 List certs = certPath.getCertificates(); local
2061 List certs = certPath.getCertificates(); local
2096 List certs = certPath.getCertificates(); local
2119 List certs = certPath.getCertificates(); local
2158 List certs = certPath.getCertificates(); local
2181 List certs = certPath.getCertificates(); local
2212 List certs = certPath.getCertificates(); local
2235 List certs = certPath.getCertificates(); local
2258 List certs = certPath.getCertificates(); local
2310 List certs = certPath.getCertificates(); local
2364 List certs = certPath.getCertificates(); local
    [all...]
  /external/chromium_org/chrome/browser/browsing_data/
browsing_data_server_bound_cert_helper.h 59 // Add an ServerBoundCert to the set of canned server bound certs that is
64 // Clears the list of canned server bound certs.
  /external/chromium_org/chrome/browser/chromeos/policy/
network_configuration_updater_unittest.cc 154 base::ListValue* certs = NULL; variable
156 onc::toplevel_config::kCertificates, &certs);
157 AppendAll(*certs, &fake_certificates_);
253 false /* do not allow trusted certs from policy */ );
272 false /* do not allow trusted certs from policy */);
308 true /* allow trusted certs from policy */);
331 true /* allow trusted certs from policy */);
405 false /* do not allow trusted certs from policy */);
user_network_configuration_updater.h 62 // Sets |certs| to the list of Web trusted server and CA certificates from the
64 void GetWebTrustedCertificates(net::CertificateList* certs) const;
  /external/chromium_org/net/quic/crypto/
cert_compressor.h 33 // CompressChain compresses the certificates in |certs| and returns a
38 static std::string CompressChain(const std::vector<std::string>& certs,
  /external/chromium_org/third_party/openssl/openssl/crypto/pkcs7/
pk7_smime.c 68 PKCS7 *PKCS7_sign(X509 *signcert, EVP_PKEY *pkey, STACK_OF(X509) *certs,
94 for(i = 0; i < sk_X509_num(certs); i++)
96 if (!PKCS7_add_certificate(p7, sk_X509_value(certs, i)))
266 int PKCS7_verify(PKCS7 *p7, STACK_OF(X509) *certs, X509_STORE *store,
314 signers = PKCS7_get0_signers(p7, certs, flags);
430 STACK_OF(X509) *PKCS7_get0_signers(PKCS7 *p7, STACK_OF(X509) *certs, int flags)
469 if (certs) signer = X509_find_by_issuer_and_serial (certs,
492 PKCS7 *PKCS7_encrypt(STACK_OF(X509) *certs, BIO *in, const EVP_CIPHER *cipher,
511 for(i = 0; i < sk_X509_num(certs); i++)
    [all...]
  /external/openssl/crypto/pkcs7/
pk7_smime.c 68 PKCS7 *PKCS7_sign(X509 *signcert, EVP_PKEY *pkey, STACK_OF(X509) *certs,
94 for(i = 0; i < sk_X509_num(certs); i++)
96 if (!PKCS7_add_certificate(p7, sk_X509_value(certs, i)))
266 int PKCS7_verify(PKCS7 *p7, STACK_OF(X509) *certs, X509_STORE *store,
314 signers = PKCS7_get0_signers(p7, certs, flags);
430 STACK_OF(X509) *PKCS7_get0_signers(PKCS7 *p7, STACK_OF(X509) *certs, int flags)
469 if (certs) signer = X509_find_by_issuer_and_serial (certs,
492 PKCS7 *PKCS7_encrypt(STACK_OF(X509) *certs, BIO *in, const EVP_CIPHER *cipher,
511 for(i = 0; i < sk_X509_num(certs); i++)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/apps/
pkcs12.c 283 BIO_printf (bio_err, "-certfile f add all certs in f\n");
424 STACK_OF(X509) *certs=NULL;
452 CRYPTO_push_info("reading certs from input");
455 /* Load in all certs in input file */
458 certs = load_certs(bio_err, infile, FORMAT_PEM, NULL, e,
460 if (!certs)
466 for(i = 0; i < sk_X509_num(certs); i++)
468 x = sk_X509_value(certs, i);
476 (void)sk_X509_delete(certs, i);
491 CRYPTO_push_info("reading certs from input 2")
    [all...]
pkcs7.c 169 BIO_printf(bio_err," -print_certs print any certs or crl in the input\n");
245 STACK_OF(X509) *certs=NULL;
252 certs=p7->d.sign->cert;
256 certs=p7->d.signed_and_enveloped->cert;
263 if (certs != NULL)
267 for (i=0; i<sk_X509_num(certs); i++)
269 x=sk_X509_value(certs,i);
  /external/openssl/apps/
pkcs12.c 283 BIO_printf (bio_err, "-certfile f add all certs in f\n");
424 STACK_OF(X509) *certs=NULL;
452 CRYPTO_push_info("reading certs from input");
455 /* Load in all certs in input file */
458 certs = load_certs(bio_err, infile, FORMAT_PEM, NULL, e,
460 if (!certs)
466 for(i = 0; i < sk_X509_num(certs); i++)
468 x = sk_X509_value(certs, i);
476 (void)sk_X509_delete(certs, i);
491 CRYPTO_push_info("reading certs from input 2")
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/AppAccessData/
Android.mk 28 LOCAL_CERTIFICATE := cts/hostsidetests/appsecurity/certs/cts-testkey2
  /cts/hostsidetests/appsecurity/test-apps/SharedUidInstall/
Android.mk 28 LOCAL_CERTIFICATE := cts/hostsidetests/appsecurity/certs/cts-testkey1
  /cts/hostsidetests/appsecurity/test-apps/UsePermissionDiffCert/
Android.mk 29 LOCAL_CERTIFICATE := cts/hostsidetests/appsecurity/certs/cts-testkey2
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
KeyStore_Impl3Test.java 109 Certificate certs[] = { local
113 KeyStore.PrivateKeyEntry pKey = new KeyStore.PrivateKeyEntry(pk, certs);
134 kss[i].setKeyEntry(aliases[3], pk, pwd, certs);
135 kss[i].setCertificateEntry(aliases[4], certs[0]);
  /external/chromium/chrome/browser/resources/options/
certificate_manager.html 6 <span id="personal-certs-nav-tab" class="tab"
13 <span id="server-certs-nav-tab" class="tab"
19 <span id="ca-certs-nav-tab" class="tab"
24 <span id="other-certs-nav-tab" class="tab"
  /external/chromium/net/base/
cert_database_win.cc 36 // NSS, and Store Type / Path) here? For now, certs will be stashed into the
  /external/chromium_org/chrome/browser/resources/options/
certificate_manager.html 7 <span id="personal-certs-nav-tab" class="tab"
13 <span id="server-certs-nav-tab" class="tab" tab-contents="serverCertsTab">
18 <span id="ca-certs-nav-tab" class="tab" tab-contents="caCertsTab">
22 <span id="other-certs-nav-tab" class="tab" tab-contents="otherCertsTab">
  /external/chromium_org/net/cert/
cert_database_win.cc 40 // NSS, and Store Type / Path) here? For now, certs will be stashed into the
  /external/chromium_org/net/ssl/
client_cert_store.h 23 // Get client certs matching the |cert_request_info|. On completion, the
  /external/nist-pkits/
extract-pkits-tests.pl 70 push(@usedFiles, "certs/" . $certName);
83 String[] certs = {
104 assertValidPath(trustAnchor, certs, crls);
108 assertInvalidPath(trustAnchor, certs, crls);
  /libcore/crypto/src/main/java/org/conscrypt/
CertPinManager.java 66 * certs from the pinned list provided.
68 * If the chain doesn't include those certs and is in enforcing mode, then this method
88 // rebuild the pinned certs
113 // there's no pin list, all certs are unpinned
SSLSessionImpl.java 132 javax.security.cert.X509Certificate[] certs = new javax.security.cert.X509Certificate[peerCertificates.length]; local
133 for (int i = 0; i < certs.length; i++) {
135 certs[i] = javax.security.cert.X509Certificate.getInstance(peerCertificates[i]
141 return certs;
  /libcore/luni/src/main/java/java/security/
CodeSource.java 28 public CodeSource(URL location, Certificate[] certs) { }
UnresolvedPermission.java 27 public UnresolvedPermission(String type, String name, String actions, Certificate[] certs) {
  /libcore/luni/src/main/java/java/util/jar/
JarEntry.java 151 private CodeSigner[] getCodeSigners(Certificate[] certs) {
152 if (certs == null) {
157 ArrayList<Certificate> list = new ArrayList<Certificate>(certs.length);
160 for (Certificate element : certs) {

Completed in 1306 milliseconds

1 2 3 45 6 7 8 91011>>