HomeSort by relevance Sort by last modified time
    Searched refs:keyfile (Results 51 - 75 of 82) sorted by null

1 23 4

  /external/python/cpython2/Tools/msi/
msilib.py 456 def start_component(self, component = None, feature = None, flags = None, keyfile = None, uuid=None):
460 flags are used. If no keyfile is given, the KeyPath is left null in the Component
473 if keyfile:
474 keyid = self.cab.gen_id(self.absolute, keyfile)
475 self.keyfiles[keyfile] = keyid
msi.py     [all...]
  /external/python/cpython3/Lib/msilib/
__init__.py 260 def start_component(self, component = None, feature = None, flags = None, keyfile = None, uuid=None):
264 flags are used. If no keyfile is given, the KeyPath is left null in the Component
277 if keyfile:
278 keyid = self.cab.gen_id(self.absolute, keyfile)
279 self.keyfiles[keyfile] = keyid
  /external/python/cpython3/Modules/clinic/
_ssl.c.h 467 "load_cert_chain($self, /, certfile, keyfile=None, password=None)\n"
476 PyObject *keyfile, PyObject *password);
482 static const char * const _keywords[] = {"certfile", "keyfile", "password", NULL};
485 PyObject *keyfile = NULL; local
489 &certfile, &keyfile, &password)) {
492 return_value = _ssl__SSLContext_load_cert_chain_impl(self, certfile, keyfile, password);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/msi/
msi.py     [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)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
socket.py 58 def ssl(sock, keyfile=None, certfile=None):
64 return _realssl.sslwrap_simple(sock, keyfile, certfile)
imaplib.py     [all...]
  /external/python/cpython2/Lib/
socket.py 58 def ssl(sock, keyfile=None, certfile=None):
64 return _realssl.sslwrap_simple(sock, keyfile, certfile)
imaplib.py     [all...]
  /external/python/cpython3/Lib/asyncio/
test_utils.py 120 keyfile = os.path.join(here, 'ssl_key.pem')
123 context.load_cert_chain(certfile, keyfile)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
socket.py 58 def ssl(sock, keyfile=None, certfile=None):
64 return _realssl.sslwrap_simple(sock, keyfile, certfile)
imaplib.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
socket.py 58 def ssl(sock, keyfile=None, certfile=None):
64 return _realssl.sslwrap_simple(sock, keyfile, certfile)
imaplib.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
socket.py 58 def ssl(sock, keyfile=None, certfile=None):
64 return _realssl.sslwrap_simple(sock, keyfile, certfile)
imaplib.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
socket.py 58 def ssl(sock, keyfile=None, certfile=None):
64 return _realssl.sslwrap_simple(sock, keyfile, certfile)
imaplib.py     [all...]
  /external/autotest/client/cros/
httpd.py 222 keyfile=key_path)
  /external/python/cpython3/Lib/test/
test_ssl.py 148 ciphers=None, certfile=None, keyfile=None,
155 if certfile is not None or keyfile is not None:
156 context.load_cert_chain(certfile, keyfile)
412 ssl.wrap_socket, sock, keyfile=CERTFILE)
429 certfile=CERTFILE, keyfile=NONEXISTINGCERT)
434 certfile=NONEXISTINGCERT, keyfile=NONEXISTINGCERT)
    [all...]
test_poplib.py 395 self.server.port, keyfile=CERTFILE, context=ctx)
399 self.server.port, keyfile=CERTFILE,
  /external/python/cpython2/Lib/test/
test_ssl.py 351 ssl.wrap_socket, sock, keyfile=CERTFILE)
368 certfile=CERTFILE, keyfile=NONEXISTINGCERT)
373 certfile=NONEXISTINGCERT, keyfile=NONEXISTINGCERT)
    [all...]
test_ftplib.py 709 self.assertRaises(ValueError, ftplib.FTP_TLS, keyfile=CERTFILE,
714 keyfile=CERTFILE, context=ctx)
  /external/python/cpython2/Modules/
_ssl.c 2645 PyObject *keyfile = NULL, *keyfile_bytes = NULL, *password = NULL; local
    [all...]

Completed in 840 milliseconds

1 23 4