Searched refs:load_cert_chain (Results 1 – 25 of 32) sorted by relevance
12
/external/python/cpython2/Lib/test/ |
D | test_ssl.py | 831 ctx.load_cert_chain(CERTFILE, keyfile=None) 832 ctx.load_cert_chain(CERTFILE, keyfile=CERTFILE) 833 self.assertRaises(TypeError, ctx.load_cert_chain, keyfile=CERTFILE) 835 ctx.load_cert_chain(NONEXISTINGCERT) 838 ctx.load_cert_chain(BADCERT) 840 ctx.load_cert_chain(EMPTYCERT) 843 ctx.load_cert_chain(ONLYCERT, ONLYKEY) 844 ctx.load_cert_chain(certfile=ONLYCERT, keyfile=ONLYKEY) 845 ctx.load_cert_chain(certfile=BYTES_ONLYCERT, keyfile=BYTES_ONLYKEY) 847 ctx.load_cert_chain(ONLYCERT) [all …]
|
D | ssl_servers.py | 155 context.load_cert_chain(certfile) 198 context.load_cert_chain(CERTFILE)
|
/external/python/cpython3/Lib/test/ |
D | test_ssl.py | 299 context.load_cert_chain(certfile, keyfile) 321 server_context.load_cert_chain(server_cert) 1295 ctx.load_cert_chain(CERTFILE, keyfile=None) 1296 ctx.load_cert_chain(CERTFILE, keyfile=CERTFILE) 1297 self.assertRaises(TypeError, ctx.load_cert_chain, keyfile=CERTFILE) 1299 ctx.load_cert_chain(NONEXISTINGCERT) 1302 ctx.load_cert_chain(BADCERT) 1304 ctx.load_cert_chain(EMPTYCERT) 1307 ctx.load_cert_chain(ONLYCERT, ONLYKEY) 1308 ctx.load_cert_chain(certfile=ONLYCERT, keyfile=ONLYKEY) [all …]
|
D | ssl_servers.py | 155 context.load_cert_chain(certfile) 198 context.load_cert_chain(CERTFILE)
|
D | test_imaplib.py | 98 context.load_cert_chain(CERTFILE) 1030 ssl_context.load_cert_chain(CERTFILE)
|
D | test_poplib.py | 158 context.load_cert_chain(CERTFILE)
|
D | test_ftplib.py | 321 context.load_cert_chain(CERTFILE)
|
/external/python/cpython2/Lib/ |
D | ssl.py | 492 context.load_cert_chain(certfile, keyfile) 560 self._context.load_cert_chain(certfile, keyfile) 1042 ctx.load_cert_chain(certfile, keyfile)
|
D | httplib.py | 1249 context.load_cert_chain(cert_file, key_file)
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | utils.py | 75 server_context.load_cert_chain(ONLYCERT, ONLYKEY) 161 context.load_cert_chain(ONLYCERT, ONLYKEY)
|
/external/python/httplib2/tests/ |
D | test_https.py | 117 context.load_cert_chain(tests.SERVER_CHAIN)
|
D | __init__.py | 356 context.load_cert_chain(SERVER_CHAIN) 359 context.load_cert_chain(tls)
|
/external/python/cpython3/Lib/ |
D | ssl.py | 787 context.load_cert_chain(certfile, keyfile) 1402 context.load_cert_chain(certfile, keyfile)
|
/external/python/httplib2/python2/httplib2/ |
D | __init__.py | 94 context.load_cert_chain(cert_file, key_file, key_password) 96 context.load_cert_chain(cert_file, key_file) 1280 self._context.load_cert_chain(cert_file, key_file, key_password)
|
/external/python/cpython3/Doc/library/ |
D | poplib.rst | 87 Please use :meth:`ssl.SSLContext.load_cert_chain` instead, or let
|
D | smtplib.rst | 110 Please use :meth:`ssl.SSLContext.load_cert_chain` instead, or let 413 Please use :meth:`ssl.SSLContext.load_cert_chain` instead, or let
|
D | ssl.rst | 105 context.load_cert_chain('/path/to/certchain.pem', '/path/to/private.key') 527 the values are passed to :meth:`SSLContext.load_cert_chain`, 1483 .. method:: SSLContext.load_cert_chain(certfile, keyfile=None, password=None) 2148 case, only the ``certfile`` parameter to :meth:`SSLContext.load_cert_chain` 2332 context.load_cert_chain(certfile="mycertfile", keyfile="mykeyfile") 2617 :meth:`SSLContext.load_cert_chain`.
|
D | ftplib.rst | 112 Please use :meth:`ssl.SSLContext.load_cert_chain` instead, or let
|
D | http.client.rst | 105 Please use :meth:`ssl.SSLContext.load_cert_chain` instead, or let
|
D | imaplib.rst | 118 Please use :meth:`ssl.SSLContext.load_cert_chain` instead, or let
|
/external/python/cpython3/Lib/http/ |
D | client.py | 1405 context.load_cert_chain(cert_file, key_file)
|
/external/python/cpython2/Doc/library/ |
D | ssl.rst | 1081 .. method:: SSLContext.load_cert_chain(certfile, keyfile=None, password=None) 1465 case, only the ``certfile`` parameter to :meth:`SSLContext.load_cert_chain` 1645 context.load_cert_chain(certfile="mycertfile", keyfile="mykeyfile") 1738 :meth:`SSLContext.load_cert_chain`.
|
D | httplib.rst | 85 :meth:`ssl.SSLContext.load_cert_chain` instead, or let
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.9rc1.rst | 183 Allow the keyfile argument of SSLContext.load_cert_chain to be None.
|
/external/python/cpython2/Modules/ |
D | _ssl.c | 2724 load_cert_chain(PySSLContext *self, PyObject *args, PyObject *kwds) in load_cert_chain() function 3487 {"load_cert_chain", (PyCFunction) load_cert_chain,
|
12