Home
last modified time | relevance | path

Searched refs:create_default_context (Results 1 – 23 of 23) sorted by relevance

/third_party/python/Lib/test/
Dtest_smtpnet.py13 context = ssl.create_default_context()
81 context = ssl.create_default_context()
Dssl_servers.py153 context = ssl.create_default_context(ssl.Purpose.CLIENT_AUTH)
197 context = ssl.create_default_context(ssl.Purpose.CLIENT_AUTH)
Dtest_urllib2_localnet.py564 context = ssl.create_default_context(cafile=CERT_localhost)
605 context = ssl.create_default_context(cafile=CERT_localhost)
Daudit-tests.py194 load_dh_params = ssl.create_default_context().load_dh_params
Dtest_ssl.py1689 ctx = ssl.create_default_context()
1698 ctx = ssl.create_default_context(cafile=SIGNING_CA, capath=CAPATH,
1704 ctx = ssl.create_default_context(ssl.Purpose.CLIENT_AUTH)
1871 ctx = ssl.create_default_context()
3541 context = ssl.create_default_context(cafile=SIGNING_CA)
4805 ctx = ssl.create_default_context()
Dtest_urllib.py602 context = ssl.create_default_context()
Dtest_logging.py2020 context = ssl.create_default_context(cafile=localhost_cert)
/third_party/python/Doc/library/
Dssl.rst79 :func:`create_default_context` returns a new context with secure default
90 context = ssl.create_default_context()
128 .. function:: create_default_context(purpose=Purpose.SERVER_AUTH, cafile=None, capath=None, cadata=…
151 variable :envvar:`SSLKEYLOGFILE` is set, :func:`create_default_context`
172 ctx = ssl.create_default_context(Purpose.CLIENT_AUTH)
1057 Option for :func:`create_default_context` and
1066 Option for :func:`create_default_context` and
1500 :func:`create_default_context` lets the :mod:`ssl` module choose
2008 >>> ssl.create_default_context().options # doctest: +SKIP
2072 >>> ssl.create_default_context().verify_flags # doctest: +SKIP
[all …]
Dpoplib.rst88 :func:`ssl.create_default_context` select the system's trusted CA
Dsmtplib.rst111 :func:`ssl.create_default_context` select the system's trusted CA
415 :func:`ssl.create_default_context` select the system's trusted CA
Dftplib.rst115 :func:`ssl.create_default_context` select the system's trusted CA
Dhttp.client.rst111 :func:`ssl.create_default_context` select the system's trusted CA
Dimaplib.rst119 :func:`ssl.create_default_context` select the system's trusted CA
Dasyncio-eventloop.rst411 from :func:`ssl.create_default_context` is used.
Durllib.request.rst121 :func:`ssl.create_default_context` select the system's trusted CA
/third_party/python/Lib/
Dssl.py740 def create_default_context(purpose=Purpose.SERVER_AUTH, *, cafile=None, function
833 _create_default_https_context = create_default_context
/third_party/json/tools/serve_header/
Dserve_header.py391 ssl_ctx = ssl.create_default_context(ssl.Purpose.CLIENT_AUTH)
/third_party/python/Lib/asyncio/
Dsslproto.py22 sslcontext = ssl.create_default_context()
/third_party/python/Lib/urllib/
Drequest.py202 context = ssl.create_default_context(ssl.Purpose.SERVER_AUTH,
/third_party/python/Doc/whatsnew/
D3.4.rst1429 New function :func:`~ssl.create_default_context` provides a standard way to
1436 :func:`~ssl.create_default_context` to obtain an :class:`~ssl.SSLContext`
2543 context = ssl.create_default_context(cafile="/path/to/file.crt")
D2.7.rst2729 context = ssl.create_default_context(cafile="/path/to/file.crt")
/third_party/python/Misc/NEWS.d/
D3.5.0a1.rst1780 using ssl.create_default_context(), for stronger security.
4166 Enhance ssl.create_default_context() when used for server side sockets to
/third_party/python/Misc/
DHISTORY1193 is now created using ssl.create_default_context(), for stronger security.
2005 - Issue #21013: Enhance ssl.create_default_context() when used for server side
3105 - ssl.create_default_context() sets OP_NO_COMPRESSION to prevent CRIME.
3306 - Issue #19689: Add ssl.create_default_context() factory function. It creates