HomeSort by relevance Sort by last modified time
    Searched refs:certfile (Results 26 - 50 of 59) sorted by null

12 3

  /external/python/cpython3/Lib/
ssl.py 583 certfile=None, keyfile=None,
607 if keyfile and not certfile:
608 raise ValueError("certfile must be specified")
609 if certfile or keyfile:
610 context.load_cert_chain(certfile, keyfile)
    [all...]
imaplib.py     [all...]
  /external/tensorflow/tensorflow/contrib/ignite/kernels/dataset/
ignite_dataset_iterator.cc 28 string certfile, string keyfile, string cert_password,
45 if (certfile.empty())
49 new SslWrapper(std::unique_ptr<Client>(p_client), std::move(certfile),
  /external/python/cpython2/Lib/
ftplib.py 661 certfile=None, context=None,
666 if context is not None and certfile is not None:
667 raise ValueError("context and certfile arguments are mutually "
670 self.certfile = certfile
673 certfile=certfile,
    [all...]
socket.py 58 def ssl(sock, keyfile=None, certfile=None):
64 return _realssl.sslwrap_simple(sock, keyfile, certfile)
imaplib.py     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
ftplib.py 625 certfile=None, timeout=_GLOBAL_DEFAULT_TIMEOUT):
627 self.certfile = certfile
644 self.sock = ssl.wrap_socket(self.sock, self.keyfile, self.certfile,
676 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)
imaplib.py     [all...]
  /external/curl/tests/certs/scripts/
genserv.sh 92 echo "$OPENSSL pkcs12 -export -des3 -out $PREFIX-sv.p12 -caname $CAPREFIX -name $PREFIX -inkey $PREFIX-sv.key -in $PREFIX-sv.crt -certfile $CAPREFIX-ca.crt "
94 $OPENSSL pkcs12 -export -des3 -out $PREFIX-sv.p12 -caname $CAPREFIX -name $PREFIX -inkey $PREFIX-sv.key -in $PREFIX-sv.crt -certfile $CAPREFIX-ca.crt
  /external/curl/tests/
runtests.pl     [all...]
  /external/python/cpython3/Lib/test/
test_ssl.py 58 CERTFILE = data_file("keycert.pem")
59 BYTES_CERTFILE = os.fsencode(CERTFILE)
218 ciphers=None, certfile=None, keyfile=None,
227 if certfile is not None or keyfile is not None:
228 context.load_cert_chain(certfile, keyfile)
358 ssl._ssl._test_decode_cert(CERTFILE),
537 "certfile must be specified",
538 ssl.wrap_socket, sock, keyfile=CERTFILE)
540 "certfile must be specified for server-side operations",
543 "certfile must be specified for server-side operations"
    [all...]
test_urllib2_localnet.py 564 handler = self.start_https_server(certfile=CERT_localhost)
575 handler = self.start_https_server(certfile=CERT_fakehostname)
581 handler = self.start_https_server(certfile=CERT_localhost)
599 handler = self.start_https_server(context=context, certfile=CERT_localhost)
test_poplib.py 25 CERTFILE = os.path.join(os.path.dirname(__file__) or os.curdir, "keycert3.pem")
156 context.load_cert_chain(CERTFILE)
415 self.server.port, keyfile=CERTFILE, context=ctx)
417 self.server.port, certfile=CERTFILE, context=ctx)
419 self.server.port, keyfile=CERTFILE,
420 certfile=CERTFILE, context=ctx)
test_imaplib.py 23 CERTFILE = os.path.join(os.path.dirname(__file__) or os.curdir, "keycert3.pem")
103 context.load_cert_chain(CERTFILE)
535 self.imap_class('localhost', 143, certfile=CERTFILE)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
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):
test_poplib.py 228 CERTFILE = os.path.join(os.path.dirname(__file__) or os.curdir, "keycert.pem")
234 self.socket = ssl.wrap_socket(self.socket, certfile=CERTFILE,
  /external/python/cpython2/Lib/test/
test_imaplib.py 21 CERTFILE = None
45 certfile=CERTFILE)
238 global CERTFILE
239 CERTFILE = os.path.join(os.path.dirname(__file__) or os.curdir,
241 if not os.path.exists(CERTFILE):
test_urllib2_localnet.py 550 handler = self.start_https_server(certfile=CERT_localhost)
560 handler = self.start_https_server(certfile=CERT_fakehostname)
566 handler = self.start_https_server(certfile=CERT_localhost)
582 handler = self.start_https_server(context=context, certfile=CERT_localhost)
test_ftplib.py 271 CERTFILE = os.path.join(os.path.dirname(__file__), "keycert3.pem")
282 certfile=CERTFILE, server_side=True,
723 self.assertRaises(ValueError, ftplib.FTP_TLS, keyfile=CERTFILE,
725 self.assertRaises(ValueError, ftplib.FTP_TLS, certfile=CERTFILE,
727 self.assertRaises(ValueError, ftplib.FTP_TLS, certfile=CERTFILE,
728 keyfile=CERTFILE, context=ctx)
test_httplib.py 816 def make_server(self, certfile):
818 return make_https_server(self, certfile=certfile)
    [all...]
test_poplib.py 242 CERTFILE = os.path.join(os.path.dirname(__file__) or os.curdir, "keycert.pem")
248 self.socket = ssl.wrap_socket(self.socket, certfile=CERTFILE,
  /external/python/cpython3/Modules/clinic/
_ssl.c.h 498 "load_cert_chain($self, /, certfile, keyfile=None, password=None)\n"
506 _ssl__SSLContext_load_cert_chain_impl(PySSLContext *self, PyObject *certfile,
513 static const char * const _keywords[] = {"certfile", "keyfile", "password", NULL};
515 PyObject *certfile; local
520 &certfile, &keyfile, &password)) {
523 return_value = _ssl__SSLContext_load_cert_chain_impl(self, certfile, keyfile, password);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
socket.py 58 def ssl(sock, keyfile=None, certfile=None):
64 return _realssl.sslwrap_simple(sock, keyfile, certfile)
  /external/autotest/client/cros/
httpd.py 252 certfile=cert_path,

Completed in 6510 milliseconds

12 3