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

/external/chromium/net/base/
H A Dcert_test_util.h24 // certs_dir represents the test certificates directory. cert_file is the
25 // name of the certificate file. If cert_file contains multiple certificates,
28 const std::string& cert_file);
H A Dcert_test_util.cc26 const std::string& cert_file) {
27 FilePath cert_path = certs_dir.AppendASCII(cert_file);
24 ImportCertFromFile( const FilePath& certs_dir, const std::string& cert_file) argument
H A Dx509_certificate_unittest.cc174 const std::string& cert_file,
176 FilePath cert_path = certs_dir.AppendASCII(cert_file);
172 CreateCertificateListFromFile( const FilePath& certs_dir, const std::string& cert_file, int format) argument
/external/chromium/net/test/
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/webkit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dapache_http_server.py81 cert_file = self._cygwin_safe_join(test_dir, "http", "conf",
118 cmd.extend(['-c', "\'SSLCertificateFile %s\'" % cert_file])
/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.c433 char *cert_file=NULL,*key_file=NULL; local
552 cert_file= *(++argv);
852 key_file = cert_file;
869 if (cert_file)
872 cert = load_cert(bio_err,cert_file,cert_format,
/external/chromium/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)

Completed in 283 milliseconds