Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/test/
Dtest_ssl.py823 ctx.load_cert_chain(CERTFILE, keyfile=None)
824 ctx.load_cert_chain(CERTFILE, keyfile=CERTFILE)
825 self.assertRaises(TypeError, ctx.load_cert_chain, keyfile=CERTFILE)
827 ctx.load_cert_chain(NONEXISTINGCERT)
830 ctx.load_cert_chain(BADCERT)
832 ctx.load_cert_chain(EMPTYCERT)
835 ctx.load_cert_chain(ONLYCERT, ONLYKEY)
836 ctx.load_cert_chain(certfile=ONLYCERT, keyfile=ONLYKEY)
837 ctx.load_cert_chain(certfile=BYTES_ONLYCERT, keyfile=BYTES_ONLYKEY)
839 ctx.load_cert_chain(ONLYCERT)
[all …]
Dssl_servers.py155 context.load_cert_chain(certfile)
198 context.load_cert_chain(CERTFILE)
/external/python/cpython2/Lib/
Dssl.py486 context.load_cert_chain(certfile, keyfile)
554 self._context.load_cert_chain(certfile, keyfile)
1036 ctx.load_cert_chain(certfile, keyfile)
Dhttplib.py1249 context.load_cert_chain(cert_file, key_file)
/external/python/cpython2/Doc/library/
Dssl.rst1052 .. method:: SSLContext.load_cert_chain(certfile, keyfile=None, password=None)
1441 case, only the ``certfile`` parameter to :meth:`SSLContext.load_cert_chain`
1621 context.load_cert_chain(certfile="mycertfile", keyfile="mykeyfile")
1714 :meth:`SSLContext.load_cert_chain`.
Dhttplib.rst85 :meth:`ssl.SSLContext.load_cert_chain` instead, or let
/external/python/cpython2/Modules/
D_ssl.c2642 load_cert_chain(PySSLContext *self, PyObject *args, PyObject *kwds) in load_cert_chain() function
3392 {"load_cert_chain", (PyCFunction) load_cert_chain,
/external/python/cpython2/Misc/
DNEWS1571 - Issue #22787: Allow the keyfile argument of SSLContext.load_cert_chain to be