Home
last modified time | relevance | path

Searched refs:load_cert_chain (Results 1 – 25 of 31) 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.py228 context.load_cert_chain(certfile, keyfile)
250 server_context.load_cert_chain(server_cert)
1213 ctx.load_cert_chain(CERTFILE, keyfile=None)
1214 ctx.load_cert_chain(CERTFILE, keyfile=CERTFILE)
1215 self.assertRaises(TypeError, ctx.load_cert_chain, keyfile=CERTFILE)
1217 ctx.load_cert_chain(NONEXISTINGCERT)
1220 ctx.load_cert_chain(BADCERT)
1222 ctx.load_cert_chain(EMPTYCERT)
1225 ctx.load_cert_chain(ONLYCERT, ONLYKEY)
1226 ctx.load_cert_chain(certfile=ONLYCERT, keyfile=ONLYKEY)
[all …]
Dssl_servers.py154 context.load_cert_chain(certfile)
197 context.load_cert_chain(CERTFILE)
Dtest_imaplib.py103 context.load_cert_chain(CERTFILE)
981 ssl_context.load_cert_chain(CERTFILE)
Dtest_poplib.py156 context.load_cert_chain(CERTFILE)
Dtest_ftplib.py316 context.load_cert_chain(CERTFILE)
Dtest_nntplib.py1558 context.load_cert_chain(certfile)
/external/python/cpython3/Lib/test/test_asyncio/
Dutils.py74 server_context.load_cert_chain(ONLYCERT, ONLYKEY)
160 context.load_cert_chain(ONLYCERT, ONLYKEY)
/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/
Dssl.py610 context.load_cert_chain(certfile, keyfile)
1216 context.load_cert_chain(certfile, keyfile)
/external/python/cpython3/Doc/library/
Dpoplib.rst68 Please use :meth:`ssl.SSLContext.load_cert_chain` instead, or let
Dsmtplib.rst101 Please use :meth:`ssl.SSLContext.load_cert_chain` instead, or let
395 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')
519 the values are passed to :meth:`SSLContext.load_cert_chain`,
1471 .. method:: SSLContext.load_cert_chain(certfile, keyfile=None, password=None)
2107 case, only the ``certfile`` parameter to :meth:`SSLContext.load_cert_chain`
2287 context.load_cert_chain(certfile="mycertfile", keyfile="mykeyfile")
2569 :meth:`SSLContext.load_cert_chain`.
Dhttp.client.rst100 Please use :meth:`ssl.SSLContext.load_cert_chain` instead, or let
Dftplib.rst103 Please use :meth:`ssl.SSLContext.load_cert_chain` instead, or let
Dimaplib.rst109 Please use :meth:`ssl.SSLContext.load_cert_chain` instead, or let
/external/tensorflow/tensorflow/contrib/ignite/python/ops/
Dignite_dataset_ops.py121 context.load_cert_chain(certfile, keyfile, password)
/external/python/cpython3/Lib/http/
Dclient.py1376 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,
/external/python/httplib2/python3/httplib2/
D__init__.py197 context.load_cert_chain(cert_file, key_file)

12