HomeSort by relevance Sort by last modified time
    Searched refs:cert_file (Results 1 - 25 of 26) sorted by null

1 2

  /external/chromium_org/net/test/
cert_test_util.h 22 // 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);
cert_test_util.cc 18 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);
openssl_helper.cc 62 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/net/base/
cert_test_util.h 24 // 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);
cert_test_util.cc 26 const std::string& cert_file) {
27 FilePath cert_path = certs_dir.AppendASCII(cert_file);
x509_certificate_unittest.cc 174 const std::string& cert_file,
176 FilePath cert_path = certs_dir.AppendASCII(cert_file);
    [all...]
  /external/chromium_org/net/quic/test_tools/
crypto_test_utils_chromium.cc 24 const std::string& cert_file)
29 ImportCertFromFile(GetTestCertsDirectory(), cert_file);
  /external/chromium_org/tools/python/google/
platform_utils_linux.py 80 cert_file = google.path_utils.FindUpward(self._base_dir, 'tools',
89 "ssl_certificate_file": cert_file,
platform_utils_mac.py 80 cert_file = google.path_utils.FindUpward(self._base_dir, 'tools',
89 "ssl_certificate_file": cert_file,
platform_utils_win.py 112 cert_file = ""
115 cert_file = google.path_utils.FindUpward(self._base_dir, 'tools',
122 "ssl_certificate_file": GetCygwinPath(cert_file),
  /external/chromium/net/test/
openssl_helper.cc 62 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/native_client_sdk/src/build_tools/sdk_tools/third_party/fancy_urllib/
__init__.py 55 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/
apache_http_server.py 66 cert_file = self._filesystem.join(test_dir, "http", "conf", "webkit-httpd.pem")
128 start_cmd.extend(['-c', "\'SSLCertificateFile %s\'" % cert_file])
  /external/chromium_org/third_party/openssl/openssl/apps/
s_apps.h 156 int set_cert_stuff(SSL_CTX *ctx, char *cert_file, char *key_file);
s_cb.c 198 int set_cert_stuff(SSL_CTX *ctx, char *cert_file, char *key_file)
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;
s_client.c 574 char *cert_file=NULL,*key_file=NULL; local
692 cert_file= *(++argv);
1048 key_file = cert_file;
    [all...]
  /external/openssl/apps/
s_apps.h 156 int set_cert_stuff(SSL_CTX *ctx, char *cert_file, char *key_file);
s_cb.c 198 int set_cert_stuff(SSL_CTX *ctx, char *cert_file, char *key_file)
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;
s_client.c 575 char *cert_file=NULL,*key_file=NULL; local
694 cert_file= *(++argv);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
httplib.py     [all...]
urllib.py 135 self.cert_file = x509.get('cert_file')
425 cert_file=self.cert_file)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
httplib.py     [all...]
urllib.py 135 self.cert_file = x509.get('cert_file')
425 cert_file=self.cert_file)
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
__init__.py 66 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)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
__init__.py 66 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)
    [all...]

Completed in 218 milliseconds

1 2