/external/chromium_org/third_party/openssl/openssl/apps/ |
crl2p7.c | 74 static int add_certs_from_file(STACK_OF(X509) *stack, char *certfile); 91 char *infile,*outfile,*prog,*certfile; local 140 else if (strcmp(*argv,"-certfile") == 0) 165 BIO_printf(bio_err," -certfile arg certificates file of chain to a trusted CA\n"); 167 BIO_printf(bio_err," -nocrl no crl to load, just certs from '-certfile'\n"); 230 certfile = sk_OPENSSL_STRING_value(certflst, i); 231 if (add_certs_from_file(cert_stack,certfile) < 0) 295 static int add_certs_from_file(STACK_OF(X509) *stack, char *certfile) 304 if ((in == NULL) || (BIO_read_filename(in,certfile) <= 0)) 306 BIO_printf(bio_err,"error opening the file, %s\n",certfile); [all...] |
CA.sh | 150 $PKCS12 -in newcert.pem -inkey newreq.pem -certfile ${CATOP}/$CACERT \
|
smime.c | 97 char *certfile = NULL, *keyfile = NULL, *contfile=NULL; local 320 else if (!strcmp (*args, "-certfile")) 324 certfile = *++args; 466 BIO_printf (bio_err, "-certfile file other certificates file\n"); 568 if (certfile) 570 if (!(other = load_certs(bio_err,certfile,FORMAT_PEM, NULL,
|
cms.c | 112 char *certfile = NULL, *keyfile = NULL, *contfile=NULL; local 469 else if (!strcmp (*args, "-certfile")) 473 certfile = *++args; 627 BIO_printf (bio_err, "-certfile file other certificates file\n"); 734 if (certfile) 736 if (!(other = load_certs(bio_err,certfile,FORMAT_PEM, NULL, [all...] |
pkcs12.c | 99 char *certfile=NULL; local 205 } else if (!strcmp (*args, "-certfile")) { 208 certfile = *args; 283 BIO_printf (bio_err, "-certfile f add all certs in f\n"); 495 if(certfile) 498 if(!(morecerts = load_certs(bio_err, certfile, FORMAT_PEM, 500 "certificates from certfile"))) 509 CRYPTO_push_info("reading certs from certfile");
|
/external/openssl/apps/ |
crl2p7.c | 74 static int add_certs_from_file(STACK_OF(X509) *stack, char *certfile); 91 char *infile,*outfile,*prog,*certfile; local 140 else if (strcmp(*argv,"-certfile") == 0) 165 BIO_printf(bio_err," -certfile arg certificates file of chain to a trusted CA\n"); 167 BIO_printf(bio_err," -nocrl no crl to load, just certs from '-certfile'\n"); 230 certfile = sk_OPENSSL_STRING_value(certflst, i); 231 if (add_certs_from_file(cert_stack,certfile) < 0) 295 static int add_certs_from_file(STACK_OF(X509) *stack, char *certfile) 304 if ((in == NULL) || (BIO_read_filename(in,certfile) <= 0)) 306 BIO_printf(bio_err,"error opening the file, %s\n",certfile); [all...] |
CA.sh | 150 $PKCS12 -in newcert.pem -inkey newreq.pem -certfile ${CATOP}/$CACERT \
|
smime.c | 97 char *certfile = NULL, *keyfile = NULL, *contfile=NULL; local 320 else if (!strcmp (*args, "-certfile")) 324 certfile = *++args; 466 BIO_printf (bio_err, "-certfile file other certificates file\n"); 568 if (certfile) 570 if (!(other = load_certs(bio_err,certfile,FORMAT_PEM, NULL,
|
cms.c | 112 char *certfile = NULL, *keyfile = NULL, *contfile=NULL; local 469 else if (!strcmp (*args, "-certfile")) 473 certfile = *++args; 627 BIO_printf (bio_err, "-certfile file other certificates file\n"); 734 if (certfile) 736 if (!(other = load_certs(bio_err,certfile,FORMAT_PEM, NULL, [all...] |
pkcs12.c | 99 char *certfile=NULL; local 205 } else if (!strcmp (*args, "-certfile")) { 208 certfile = *args; 283 BIO_printf (bio_err, "-certfile f add all certs in f\n"); 495 if(certfile) 498 if(!(morecerts = load_certs(bio_err, certfile, FORMAT_PEM, 500 "certificates from certfile"))) 509 CRYPTO_push_info("reading certs from certfile");
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
ssl.py | 106 def __init__(self, sock, keyfile=None, certfile=None, 124 if certfile and not keyfile: 125 keyfile = certfile 139 keyfile, certfile, 145 self.certfile = certfile 312 self._sslobj = _ssl.sslwrap(self._sock, False, self.keyfile, self.certfile, 350 certfile=self.certfile, 376 def wrap_socket(sock, keyfile=None, certfile=None [all...] |
poplib.py | 320 Instantiate with: POP3_SSL(hostname, port=995, keyfile=None, certfile=None) 325 certfile - PEM formatted certificate chain file 330 def __init__(self, host, port = POP3_SSL_PORT, keyfile = None, certfile = None): 334 self.certfile = certfile 352 self.sslobj = ssl.wrap_socket(self.sock, self.keyfile, self.certfile)
|
smtplib.py | 617 def starttls(self, keyfile=None, certfile=None): 624 session. If you provide the keyfile and certfile parameters, 641 self.sock = ssl.wrap_socket(self.sock, keyfile, certfile) 765 omitted, the standard SMTP-over-SSL port (465) is used. keyfile and certfile 773 keyfile=None, certfile=None, 776 self.certfile = certfile 783 new_socket = ssl.wrap_socket(new_socket, self.keyfile, self.certfile)
|
ftplib.py | 635 certfile=None, timeout=_GLOBAL_DEFAULT_TIMEOUT): 637 self.certfile = certfile 654 self.sock = ssl.wrap_socket(self.sock, self.keyfile, self.certfile, 686 conn = ssl.wrap_socket(conn, self.keyfile, self.certfile, [all...] |
socket.py | 58 def ssl(sock, keyfile=None, certfile=None): 64 return _realssl.sslwrap_simple(sock, keyfile, certfile)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
ssl.py | 106 def __init__(self, sock, keyfile=None, certfile=None, 124 if certfile and not keyfile: 125 keyfile = certfile 139 keyfile, certfile, 145 self.certfile = certfile 312 self._sslobj = _ssl.sslwrap(self._sock, False, self.keyfile, self.certfile, 350 certfile=self.certfile, 376 def wrap_socket(sock, keyfile=None, certfile=None [all...] |
poplib.py | 320 Instantiate with: POP3_SSL(hostname, port=995, keyfile=None, certfile=None) 325 certfile - PEM formatted certificate chain file 330 def __init__(self, host, port = POP3_SSL_PORT, keyfile = None, certfile = None): 334 self.certfile = certfile 352 self.sslobj = ssl.wrap_socket(self.sock, self.keyfile, self.certfile)
|
smtplib.py | 617 def starttls(self, keyfile=None, certfile=None): 624 session. If you provide the keyfile and certfile parameters, 641 self.sock = ssl.wrap_socket(self.sock, keyfile, certfile) 765 omitted, the standard SMTP-over-SSL port (465) is used. keyfile and certfile 773 keyfile=None, certfile=None, 776 self.certfile = certfile 783 new_socket = ssl.wrap_socket(new_socket, self.keyfile, self.certfile)
|
ftplib.py | 635 certfile=None, timeout=_GLOBAL_DEFAULT_TIMEOUT): 637 self.certfile = certfile 654 self.sock = ssl.wrap_socket(self.sock, self.keyfile, self.certfile, 686 conn = ssl.wrap_socket(conn, self.keyfile, self.certfile, [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_ssl.py | 26 CERTFILE = None 106 p = ssl._ssl._test_decode_cert(CERTFILE, False) 362 pem = ssl.get_server_certificate(("svn.python.org", 443), ca_certs=CERTFILE) 439 certfile=self.server.certificate, 548 certfile=self.certificate, 605 def __init__(self, conn, certfile): 608 certfile=certfile, 650 def __init__(self, certfile): 651 self.certfile = certfil [all...] |
test_imaplib.py | 21 CERTFILE = None 45 certfile=CERTFILE) 225 global CERTFILE 226 CERTFILE = os.path.join(os.path.dirname(__file__) or os.curdir, 228 if not os.path.exists(CERTFILE):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_ssl.py | 26 CERTFILE = None 106 p = ssl._ssl._test_decode_cert(CERTFILE, False) 362 pem = ssl.get_server_certificate(("svn.python.org", 443), ca_certs=CERTFILE) 439 certfile=self.server.certificate, 548 certfile=self.certificate, 605 def __init__(self, conn, certfile): 608 certfile=certfile, 650 def __init__(self, certfile): 651 self.certfile = certfil [all...] |
test_imaplib.py | 21 CERTFILE = None 45 certfile=CERTFILE) 225 global CERTFILE 226 CERTFILE = os.path.join(os.path.dirname(__file__) or os.curdir, 228 if not os.path.exists(CERTFILE):
|
/external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/third_party/fancy_urllib/ |
__init__.py | 149 certfile=self.cert_file, 162 certfile=self.cert_file)
|
/external/chromium_org/chrome/test/chromedriver/test/ |
webserver.py | 83 self._server.socket, certfile=server_cert_and_key_path,
|