/external/chromium_org/net/test/ |
H A D | 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);
|
H A D | 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); 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 D | 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/net/quic/test_tools/ |
H A D | crypto_test_utils_chromium.cc | 26 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 D | platform_utils_linux.py | 80 cert_file = google.path_utils.FindUpward(self._base_dir, 'tools', 89 "ssl_certificate_file": cert_file,
|
H A D | platform_utils_mac.py | 80 cert_file = google.path_utils.FindUpward(self._base_dir, 'tools', 89 "ssl_certificate_file": cert_file,
|
H A D | 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_org/native_client_sdk/src/build_tools/sdk_tools/third_party/fancy_urllib/ |
H A D | __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/ |
H A D | apache_http.py | 62 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 D | s_apps.h | 156 int set_cert_stuff(SSL_CTX *ctx, char *cert_file, char *key_file);
|
H A D | s_cb.c | 198 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 D | s_client.c | 575 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 D | s_apps.h | 156 int set_cert_stuff(SSL_CTX *ctx, char *cert_file, char *key_file);
|
H A D | s_cb.c | 198 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 D | s_client.c | 577 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 D | cert_loader_unittest.cc | 118 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__.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) 1013 cert_file=certs[0][1], timeout=self.timeout, proxy_info=self.proxy_info)
|
/external/chromium_org/net/cert/ |
H A D | x509_certificate_unittest.cc | 1152 const char* cert_file; member in struct:net::PublicKeyInfoTestData 1180 ImportCertFromFile(GetTestCertsDirectory(), data.cert_file));
|