/external/chromium_org/chrome/browser/ui/webui/options/ |
certificate_manager_browsertest.js | 219 var certs = caCertsTab.querySelectorAll('div.tree-item div.tree-item'); 223 var cert0 = certs[0]; 232 var cert1 = certs[1];
|
/external/chromium_org/chromeos/network/onc/ |
onc_certificate_importer_impl_unittest.cc | 154 net::CertificateList certs = ListCertsInSlot(); local 155 for (size_t i = 0; i < certs.size(); ++i) { 156 if (!net::NSSCertDatabase::GetInstance()->DeleteCertAndKey(certs[i]
|
onc_utils.h | 112 // Replaces all references by GUID to Server or CA certs by their PEM 121 // Replaces all references by GUID to Server or CA certs by their PEM
|
/external/chromium_org/net/quic/crypto/ |
quic_crypto_client_config.h | 54 void SetProof(const std::vector<std::string>& certs, 72 const std::vector<std::string>& certs() const; 125 // to store the cached certs that were sent as hints to the server in
|
/libcore/crypto/src/main/java/org/conscrypt/ |
OpenSSLX509CertificateFactory.java | 98 List<? extends T> certs = fromPkcs7DerInputStream(pbis); local 99 if (certs.size() == 0) { 102 return certs.get(0);
|
/external/apache-http/src/org/apache/http/conn/ssl/ |
AbstractVerifier.java | 93 Certificate[] certs = session.getPeerCertificates(); local 94 X509Certificate x509 = (X509Certificate) certs[0]; 100 Certificate[] certs = session.getPeerCertificates(); local 101 X509Certificate x509 = (X509Certificate) certs[0];
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/pkcs12/ |
PKCS12KeyStoreSpi.java | 98 private IgnoresCaseHashtable certs = new IgnoresCaseHashtable(); field in class:PKCS12KeyStoreSpi 216 Enumeration e = certs.keys(); 238 return (certs.get(alias) != null || keys.get(alias) != null); 251 Certificate c = (Certificate)certs.remove(alias); 283 Certificate c = (Certificate)certs.get(alias); 307 Enumeration c = certs.elements(); 308 Enumeration k = certs.keys(); 448 if (keys.get(alias) == null && certs.get(alias) == null) 471 return (certs.get(alias) != null && keys.get(alias) == null); 490 certs.put(alias, cert) [all...] |
/external/chromium/chrome/common/net/ |
x509_certificate_model_nss.cc | 233 const std::vector<scoped_refptr<X509Certificate> >& certs, 238 for (size_t i = 0; i < certs.size(); ++i) { 241 CERT_DupCertificate(certs[i]->os_cert_handle())); 251 static_cast<int>(certs.size()));
|
/external/chromium_org/chrome/common/net/ |
x509_certificate_model_nss.cc | 237 const std::vector<scoped_refptr<X509Certificate> >& certs, 242 for (size_t i = 0; i < certs.size(); ++i) { 245 CERT_DupCertificate(certs[i]->os_cert_handle())); 255 static_cast<int>(certs.size()));
|
/external/chromium_org/content/browser/ssl/ |
ssl_client_auth_handler.h | 77 // The certs to choose from.
|
/external/chromium_org/crypto/ |
nss_util_internal.h | 25 // public-key data only (e.g. server certs). Caller must release
|
/external/chromium_org/third_party/openssl/openssl/ssl/ |
ssl_cert.c | 665 * Load CA certs from a file into a ::STACK. Note that it is somewhat misnamed; 669 * \param file the file containing one or more certs. 670 * \return a ::STACK containing the certs. 734 * Add a file of certs to a stack. 736 * \param file the file to add from. All certs in this file that are not 739 * certs may have been added to \c stack. 795 * Add a directory of certs to a stack. 798 * examined as potential certs. Any that are acceptable to 802 * certs may have been added to \c stack.
|
/external/openssl/ssl/ |
ssl_cert.c | 645 * Load CA certs from a file into a ::STACK. Note that it is somewhat misnamed; 649 * \param file the file containing one or more certs. 650 * \return a ::STACK containing the certs. 714 * Add a file of certs to a stack. 716 * \param file the file to add from. All certs in this file that are not 719 * certs may have been added to \c stack. 775 * Add a directory of certs to a stack. 778 * examined as potential certs. Any that are acceptable to 782 * certs may have been added to \c stack.
|
/libcore/support/src/test/java/tests/resources/x509/ |
default.cnf | 86 certs = $dir/certs # Where the issued certs are kept 89 new_certs_dir = $dir/newcerts # default place for new certs.
|
/external/chromium_org/net/spdy/ |
spdy_framer_test.cc | [all...] |
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
KSPrivateKeyEntryTest.java | 69 Certificate[] certs = new MyCertificate[1];//new Certificate[1]; local 72 new KeyStore.PrivateKeyEntry(pk, certs);
|
/external/chromium/chrome/browser/chromeos/options/ |
wifi_config_model.cc | 127 // The list of user certs is small, so just test each one. 160 // List of server certs is small, so just test each one.
|
/external/chromium/chrome/browser/ui/webui/options/ |
certificate_manager_handler.h | 97 // 3. read completes -> ImportServerFileRead -> parse certs -> attempt import 107 // 3. read completes -> ImportCAFileRead -> parse certs ->
|
/external/chromium_org/net/cert/ |
x509_util_nss_unittest.cc | 114 // times using NSS since X509Certificate will fail with EC certs on OSX 10.5 163 // signature_verifier_win and signature_verifier_mac can't handle EC certs.
|
/external/chromium_org/third_party/openssl/openssl/crypto/ocsp/ |
ocsp_asn.c | 65 ASN1_EXP_SEQUENCE_OF_OPT(OCSP_SIGNATURE, certs, X509, 0) 164 ASN1_EXP_SEQUENCE_OF_OPT(OCSP_BASICRESP, certs, X509, 0)
|
/external/openssh/ |
servconf.h | 59 char *host_cert_files[MAX_HOSTCERTS]; /* Files containing host certs. */ 60 int num_host_cert_files; /* Number of files for host certs. */
|
/external/openssl/crypto/ocsp/ |
ocsp_asn.c | 65 ASN1_EXP_SEQUENCE_OF_OPT(OCSP_SIGNATURE, certs, X509, 0) 164 ASN1_EXP_SEQUENCE_OF_OPT(OCSP_BASICRESP, certs, X509, 0)
|
/libcore/luni/src/main/files/cacerts/ |
ddc328ff.0 | 26 Issuer: C=ZA, ST=Western Cape, L=Cape Town, O=Thawte Consulting cc, OU=Certification Services Division, CN=Thawte Server CA/emailAddress=server-certs@thawte.com 30 Subject: C=ZA, ST=Western Cape, L=Cape Town, O=Thawte Consulting cc, OU=Certification Services Division, CN=Thawte Server CA/emailAddress=server-certs@thawte.com
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
KSPrivateKeyEntryTest.java | 63 Certificate[] certs = new MyCertificate[1];//new Certificate[1]; local 66 new KeyStore.PrivateKeyEntry(pk, certs);
|
/external/chromium_org/net/data/ssl/certificates/ |
README | 88 generated via scripts/generate-cross-signed-certs.sh 164 server certs are checked for correct eKU fields (when an eKU field is 177 The .pem versions contain just the certs, while the .p12 versions contain 215 the script net/data/ssl/scripts/generate-test-certs.sh. 227 net/data/ssl/scripts/generate-policy-certs.sh
|