Home
last modified time | relevance | path

Searched refs:load_cert_chain (Results 1 – 25 of 32) sorted by relevance

12

/external/python/cpython2/Lib/test/
Dtest_ssl.py831 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 …]
Dssl_servers.py155 context.load_cert_chain(certfile)
198 context.load_cert_chain(CERTFILE)
/external/python/cpython3/Lib/test/
Dtest_ssl.py299 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 …]
Dssl_servers.py155 context.load_cert_chain(certfile)
198 context.load_cert_chain(CERTFILE)
Dtest_imaplib.py98 context.load_cert_chain(CERTFILE)
1030 ssl_context.load_cert_chain(CERTFILE)
Dtest_poplib.py158 context.load_cert_chain(CERTFILE)
Dtest_ftplib.py321 context.load_cert_chain(CERTFILE)
/external/python/cpython2/Lib/
Dssl.py492 context.load_cert_chain(certfile, keyfile)
560 self._context.load_cert_chain(certfile, keyfile)
1042 ctx.load_cert_chain(certfile, keyfile)
Dhttplib.py1249 context.load_cert_chain(cert_file, key_file)
/external/python/cpython3/Lib/test/test_asyncio/
Dutils.py75 server_context.load_cert_chain(ONLYCERT, ONLYKEY)
161 context.load_cert_chain(ONLYCERT, ONLYKEY)
/external/python/httplib2/tests/
Dtest_https.py117 context.load_cert_chain(tests.SERVER_CHAIN)
D__init__.py356 context.load_cert_chain(SERVER_CHAIN)
359 context.load_cert_chain(tls)
/external/python/cpython3/Lib/
Dssl.py787 context.load_cert_chain(certfile, keyfile)
1402 context.load_cert_chain(certfile, keyfile)
/external/python/httplib2/python2/httplib2/
D__init__.py94 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/
Dpoplib.rst87 Please use :meth:`ssl.SSLContext.load_cert_chain` instead, or let
Dsmtplib.rst110 Please use :meth:`ssl.SSLContext.load_cert_chain` instead, or let
413 Please use :meth:`ssl.SSLContext.load_cert_chain` instead, or let
Dssl.rst105 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`.
Dftplib.rst112 Please use :meth:`ssl.SSLContext.load_cert_chain` instead, or let
Dhttp.client.rst105 Please use :meth:`ssl.SSLContext.load_cert_chain` instead, or let
Dimaplib.rst118 Please use :meth:`ssl.SSLContext.load_cert_chain` instead, or let
/external/python/cpython3/Lib/http/
Dclient.py1405 context.load_cert_chain(cert_file, key_file)
/external/python/cpython2/Doc/library/
Dssl.rst1081 .. 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`.
Dhttplib.rst85 :meth:`ssl.SSLContext.load_cert_chain` instead, or let
/external/python/cpython2/Misc/NEWS.d/
D2.7.9rc1.rst183 Allow the keyfile argument of SSLContext.load_cert_chain to be None.
/external/python/cpython2/Modules/
D_ssl.c2724 load_cert_chain(PySSLContext *self, PyObject *args, PyObject *kwds) in load_cert_chain() function
3487 {"load_cert_chain", (PyCFunction) load_cert_chain,

12