/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/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/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/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
apache_http_server.py | 81 cert_file = self._cygwin_safe_join(test_dir, "http", "conf", 118 cmd.extend(['-c', "\'SSLCertificateFile %s\'" % cert_file])
|
/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...] |