Home
last modified time | relevance | path

Searched refs:OP_NO_SSLv3 (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython3/Misc/NEWS.d/
D3.5.2.rst16 Ubuntu's openssl OP_NO_SSLv3 is forced on by default; fix test.
D3.6.0b1.rst549 SSLContext has improved default settings: OP_NO_SSLv2, OP_NO_SSLv3,
/external/python/cpython2/Lib/test/
Dtest_ssl.py172 ssl.OP_NO_SSLv3
777 default = (ssl.OP_ALL | ssl.OP_NO_SSLv2 | ssl.OP_NO_SSLv3)
788 self.assertEqual(0, ctx.options & ~ssl.OP_NO_SSLv3)
2300 client_options=ssl.OP_NO_SSLv3)
2336 server_options=ssl.OP_NO_SSLv3)
2339 server_options=ssl.OP_NO_SSLv2 | ssl.OP_NO_SSLv3)
2357 client_options=ssl.OP_NO_SSLv3)
2409 server_options=ssl.OP_NO_SSLv3|ssl.OP_NO_SSLv2,
2410 client_options=ssl.OP_NO_SSLv3|ssl.OP_NO_SSLv2,)
/external/python/cpython2/Lib/
Dssl.py434 context.options |= OP_NO_SSLv3
483 context.options |= OP_NO_SSLv3
/external/python/cpython2/Doc/library/
Dssl.rst257 :data:`OP_NO_SSLv3` with high encryption cipher suites without RC4 and
277 :data:`OP_NO_SSLv3`. SSL3.0 is widely considered to be `completely broken
283 ctx.options &= ~ssl.OP_NO_SSLv3
632 protocol with flags like ``OP_NO_SSLv3`` instead.
641 protocol with flags like ``OP_NO_SSLv3`` instead.
653 protocol with flags like ``OP_NO_SSLv3`` instead.
666 protocol with flags like ``OP_NO_SSLv3`` instead.
685 .. data:: OP_NO_SSLv3
1785 context.options |= ssl.OP_NO_SSLv3
/external/python/cpython3/Lib/test/
Dtest_ssl.py342 ssl.OP_NO_SSLv3
1137 default = (ssl.OP_ALL | ssl.OP_NO_SSLv2 | ssl.OP_NO_SSLv3)
1150 self.assertEqual(0, ctx.options & ~ssl.OP_NO_SSLv3)
3222 client_options=ssl.OP_NO_SSLv3)
3260 server_options=ssl.OP_NO_SSLv3)
3263 server_options=ssl.OP_NO_SSLv2 | ssl.OP_NO_SSLv3)
3279 client_options=ssl.OP_NO_SSLv3)
3326 server_options=ssl.OP_NO_SSLv3|ssl.OP_NO_SSLv2,
3327 client_options=ssl.OP_NO_SSLv3|ssl.OP_NO_SSLv2,)
/external/python/pyopenssl/doc/api/
Dssl.rst73 OP_NO_SSLv3
/external/python/cpython3/Doc/library/
Dssl.rst135 :data:`OP_NO_SSLv3` with high encryption cipher suites without RC4 and
159 :data:`OP_NO_SSLv3`. SSL3.0 is widely considered to be `completely broken
165 ctx.options &= ~ssl.OP_NO_SSLv3
711 protocol :data:`PROTOCOL_TLS` with flags like :data:`OP_NO_SSLv3` instead.
720 protocol :data:`PROTOCOL_TLS` with flags like :data:`OP_NO_SSLv3` instead.
732 protocol :data:`PROTOCOL_TLS` with flags like :data:`OP_NO_SSLv3` instead.
745 protocol :data:`PROTOCOL_TLS` with flags like :data:`OP_NO_SSLv3` instead.
768 .. data:: OP_NO_SSLv3
1446 .. [2] :class:`SSLContext` disables SSLv3 with :data:`OP_NO_SSLv3` by default.
1461 and :data:`OP_NO_SSLv3` (except for :data:`PROTOCOL_SSLv3`) are
[all …]
/external/python/pyopenssl/tests/
Dtest_ssl.py62 from OpenSSL.SSL import OP_SINGLE_DH_USE, OP_NO_SSLv2, OP_NO_SSLv3
3459 server_ctx.set_options(OP_NO_SSLv2 | OP_NO_SSLv3 | OP_SINGLE_DH_USE)
3486 client_ctx.set_options(OP_NO_SSLv2 | OP_NO_SSLv3 | OP_SINGLE_DH_USE)
/external/python/cpython3/Lib/
Dssl.py585 self.options &= ~Options.OP_NO_SSLv3
/external/python/pyopenssl/src/OpenSSL/
DSSL.py145 OP_NO_SSLv3 = _lib.SSL_OP_NO_SSLv3 variable
/external/python/cpython3/Misc/
DHISTORY78 - Issue #26867: Ubuntu's openssl OP_NO_SSLv3 is forced on by default; fix test.