Searched refs:cert_file (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/net/test/
H A Dcert_test_util.h22 // Imports all of the certificates in |cert_file|, a file in |certs_dir|,
25 const std::string& cert_file,
28 // Imports all of the certificates in |cert_file|, a file in |certs_dir|, into
34 const std::string& cert_file,
37 // Imports a single certificate from |cert_file|.
38 // |certs_dir| represents the test certificates directory. |cert_file| is the
39 // name of the certificate file. If cert_file contains multiple certificates,
42 const std::string& cert_file);
H A Dcert_test_util.cc18 const std::string& cert_file,
20 base::FilePath cert_path = certs_dir.AppendASCII(cert_file);
31 const std::string& cert_file,
34 certs_dir, cert_file, format);
49 const std::string& cert_file) {
50 base::FilePath cert_path = certs_dir.AppendASCII(cert_file);
16 CreateCertificateListFromFile( const base::FilePath& certs_dir, const std::string& cert_file, int format) argument
29 CreateCertificateChainFromFile( const base::FilePath& certs_dir, const std::string& cert_file, int format) argument
47 ImportCertFromFile( const base::FilePath& certs_dir, const std::string& cert_file) argument
H A Dopenssl_helper.cc62 const char* cert_file = kDefaultPEMFile; local
109 cert_file = argv[i];
144 if (BIO_read_filename(cert, cert_file) <= 0) {
145 fprintf(stderr, "Failed to read %s\n", cert_file);
151 fprintf(stderr, "Failed to parse %s\n", cert_file);
157 fprintf(stderr, "Failed to load %s\n", cert_file);
/external/chromium_org/net/quic/test_tools/
H A Dcrypto_test_utils_chromium.cc26 const std::string& cert_file)
32 ImportCertFromFile(GetTestCertsDirectory(), cert_file);
24 TestProofVerifierChromium(CertVerifier* cert_verifier, TransportSecurityState* transport_security_state, const std::string& cert_file) argument
/external/chromium_org/tools/python/google/
H A Dplatform_utils_linux.py80 cert_file = google.path_utils.FindUpward(self._base_dir, 'tools',
89 "ssl_certificate_file": cert_file,
H A Dplatform_utils_mac.py80 cert_file = google.path_utils.FindUpward(self._base_dir, 'tools',
89 "ssl_certificate_file": cert_file,
H A Dplatform_utils_win.py112 cert_file = ""
115 cert_file = google.path_utils.FindUpward(self._base_dir, 'tools',
122 "ssl_certificate_file": GetCygwinPath(cert_file),
/external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/third_party/fancy_urllib/
H A D__init__.py55 cert_file=None, ca_certs=None):
71 self.cert_file = cert_file
149 certfile=self.cert_file,
162 certfile=self.cert_file)
225 def set_ssl_info(self, key_file=None, cert_file=None, ca_certs=None):
227 self._cert_file = cert_file
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/
H A Dapache_http.py62 cert_file = self._filesystem.join(test_dir, "http", "conf", "webkit-httpd.pem")
79 '-c', 'SSLCertificateFile "%s"' % cert_file,
/external/chromium_org/third_party/openssl/openssl/apps/
H A Ds_apps.h156 int set_cert_stuff(SSL_CTX *ctx, char *cert_file, char *key_file);
H A Ds_cb.c198 int set_cert_stuff(SSL_CTX *ctx, char *cert_file, char *key_file) argument
200 if (cert_file != NULL)
207 if (SSL_CTX_use_certificate_file(ctx,cert_file,
210 BIO_printf(bio_err,"unable to get certificate from '%s'\n",cert_file);
214 if (key_file == NULL) key_file=cert_file;
H A Ds_client.c575 char *cert_file=NULL,*key_file=NULL; local
694 cert_file= *(++argv);
1054 key_file = cert_file;
1071 if (cert_file)
1074 cert = load_cert(bio_err,cert_file,cert_format,
/external/openssl/apps/
H A Ds_apps.h156 int set_cert_stuff(SSL_CTX *ctx, char *cert_file, char *key_file);
H A Ds_cb.c198 int set_cert_stuff(SSL_CTX *ctx, char *cert_file, char *key_file) argument
200 if (cert_file != NULL)
207 if (SSL_CTX_use_certificate_file(ctx,cert_file,
210 BIO_printf(bio_err,"unable to get certificate from '%s'\n",cert_file);
214 if (key_file == NULL) key_file=cert_file;
H A Ds_client.c577 char *cert_file=NULL,*key_file=NULL; local
698 cert_file= *(++argv);
1065 key_file = cert_file;
1082 if (cert_file)
1085 cert = load_cert(bio_err,cert_file,cert_format,
/external/chromium_org/chromeos/
H A Dcert_loader_unittest.cc118 void ImportCACert(const std::string& cert_file, argument
127 cert_file,
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
H A D__init__.py66 def _ssl_wrap_socket(sock, key_file, cert_file):
67 ssl_sock = socket.ssl(sock, key_file, cert_file)
755 def __init__(self, host, port=None, key_file=None, cert_file=None,
758 cert_file=cert_file, strict=strict)
774 self.sock =_ssl_wrap_socket(sock, self.key_file, self.cert_file)
1013 cert_file=certs[0][1], timeout=self.timeout, proxy_info=self.proxy_info)
/external/chromium_org/net/cert/
H A Dx509_certificate_unittest.cc1152 const char* cert_file; member in struct:net::PublicKeyInfoTestData
1180 ImportCertFromFile(GetTestCertsDirectory(), data.cert_file));

Completed in 542 milliseconds