Home
last modified time | relevance | path

Searched refs:cert_file (Results 1 – 7 of 7) sorted by relevance

/external/curl/lib/vtls/
Dopenssl.c337 char *cert_file, in cert_stuff() argument
346 if(cert_file || (file_type == SSL_FILETYPE_ENGINE)) { in cert_stuff()
364 cert_file) != 1) { in cert_stuff()
379 cert_file, in cert_stuff()
399 params.cert_id = cert_file; in cert_stuff()
413 " '%s' [%s]", cert_file, in cert_stuff()
450 f = fopen(cert_file, "rb"); in cert_stuff()
452 failf(data, "could not open PKCS12 file '%s'", cert_file); in cert_stuff()
459 failf(data, "error reading PKCS12 file '%s'", cert_file); in cert_stuff()
487 cert_file); in cert_stuff()
[all …]
Dnss.c598 char *cert_file, char *key_file) in cert_stuff() argument
603 if(cert_file) { in cert_stuff()
604 result = nss_load_cert(&conn->ssl[sockindex], cert_file, PR_FALSE); in cert_stuff()
607 if(!display_error(conn, err, cert_file)) { in cert_stuff()
616 if(key_file || (is_file(cert_file))) { in cert_stuff()
621 result = nss_load_key(conn, sockindex, cert_file); in cert_stuff()
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/
Dadb_install_cert.py142 with open(self.reformatted_cert_path, 'w') as cert_file:
143 cert_file.write(contents)
Dhttpproxy.py391 with open(self.ca_cert_path, 'r') as cert_file:
392 self._ca_cert_str = cert_file.read()
/external/boringssl/src/ssl/test/
Dtest_config.h31 std::string cert_file; member
Dtest_config.cc136 { "-cert-file", &TestConfig::cert_file },
Dbssl_shim.cc494 if (!config->cert_file.empty() && in GetCertificate()
495 !LoadCertificate(out_x509, out_chain, config->cert_file.c_str())) { in GetCertificate()