Home
last modified time | relevance | path

Searched refs:OP_NO_SSLv2 (Results 1 – 14 of 14) sorted by relevance

/external/python/pyopenssl/examples/simple/
Dclient.py37 ctx.set_options(SSL.OP_NO_SSLv2)
Dserver.py38 ctx.set_options(SSL.OP_NO_SSLv2)
/external/python/cpython2/Lib/test/
Dtest_ssl.py171 ssl.OP_NO_SSLv2
777 default = (ssl.OP_ALL | ssl.OP_NO_SSLv2 | ssl.OP_NO_SSLv3)
1163 self.assertEqual(ctx.options & ssl.OP_NO_SSLv2, ssl.OP_NO_SSLv2)
1175 self.assertEqual(ctx.options & ssl.OP_NO_SSLv2, ssl.OP_NO_SSLv2)
1184 self.assertEqual(ctx.options & ssl.OP_NO_SSLv2, ssl.OP_NO_SSLv2)
1203 self.assertEqual(ctx.options & ssl.OP_NO_SSLv2, ssl.OP_NO_SSLv2)
1208 self.assertEqual(ctx.options & ssl.OP_NO_SSLv2, ssl.OP_NO_SSLv2)
1216 self.assertEqual(ctx.options & ssl.OP_NO_SSLv2, ssl.OP_NO_SSLv2)
1221 self.assertEqual(ctx.options & ssl.OP_NO_SSLv2, ssl.OP_NO_SSLv2)
2298 client_options=ssl.OP_NO_SSLv2)
[all …]
/external/python/pyopenssl/examples/
DSecureXMLRPCServer.py74 ctx.set_options(SSL.OP_NO_SSLv2)
/external/python/pyopenssl/tests/
Dtest_ssl.py47 from OpenSSL.SSL import OP_SINGLE_DH_USE, OP_NO_SSLv2, OP_NO_SSLv3
742 options = context.set_options(OP_NO_SSLv2)
743 assert options & OP_NO_SSLv2 == OP_NO_SSLv2
752 options = context.set_options(long(OP_NO_SSLv2))
753 assert options & OP_NO_SSLv2 == OP_NO_SSLv2
3360 server_ctx.set_options(OP_NO_SSLv2 | OP_NO_SSLv3 | OP_SINGLE_DH_USE)
3385 client_ctx.set_options(OP_NO_SSLv2 | OP_NO_SSLv3 | OP_SINGLE_DH_USE)
/external/python/cpython2/Lib/
Dssl.py430 context.options |= OP_NO_SSLv2
480 context.options |= OP_NO_SSLv2
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_events.py880 sslcontext.options |= ssl.OP_NO_SSLv2
969 sslcontext_client.options |= ssl.OP_NO_SSLv2
999 sslcontext_client.options |= ssl.OP_NO_SSLv2
1028 sslcontext_client.options |= ssl.OP_NO_SSLv2
1059 sslcontext_client.options |= ssl.OP_NO_SSLv2
1084 sslcontext_client.options |= ssl.OP_NO_SSLv2
/external/python/pyopenssl/doc/api/
Dssl.rst72 .. py:data:: OP_NO_SSLv2
/external/python/cpython3/Lib/test/
Dtest_ssl.py337 ssl.OP_NO_SSLv2
1134 default = (ssl.OP_ALL | ssl.OP_NO_SSLv2 | ssl.OP_NO_SSLv3)
1606 self.assertEqual(ctx.options & ssl.OP_NO_SSLv2, ssl.OP_NO_SSLv2)
3215 client_options=ssl.OP_NO_SSLv2)
3258 server_options=ssl.OP_NO_SSLv2 | ssl.OP_NO_SSLv3)
3279 False, client_options=ssl.OP_NO_SSLv2)
3321 server_options=ssl.OP_NO_SSLv3|ssl.OP_NO_SSLv2,
3322 client_options=ssl.OP_NO_SSLv3|ssl.OP_NO_SSLv2,)
/external/python/cpython3/Doc/library/
Dssl.rst134 The settings are: :data:`PROTOCOL_TLS`, :data:`OP_NO_SSLv2`, and
755 .. data:: OP_NO_SSLv2
1445 .. [1] :class:`SSLContext` disables SSLv2 with :data:`OP_NO_SSLv2` by default.
1460 :data:`OP_NO_SSLv2` (except for :data:`PROTOCOL_SSLv2`),
1984 such as :data:`OP_NO_SSLv2` by ORing them together.
1995 <Options.OP_ALL|OP_NO_SSLv3|OP_NO_SSLv2|OP_NO_COMPRESSION: 2197947391>
/external/python/cpython2/Doc/library/
Dssl.rst256 The settings are: :data:`PROTOCOL_SSLv23`, :data:`OP_NO_SSLv2`, and
677 .. data:: OP_NO_SSLv2
1353 such as :data:`OP_NO_SSLv2` by ORing them together.
1784 context.options |= ssl.OP_NO_SSLv2
/external/python/pyopenssl/src/OpenSSL/
DSSL.py138 OP_NO_SSLv2 = _lib.SSL_OP_NO_SSLv2 variable
/external/python/cpython3/Misc/NEWS.d/
D3.6.0b1.rst549 SSLContext has improved default settings: OP_NO_SSLv2, OP_NO_SSLv3,
/external/python/cpython3/Doc/whatsnew/
D3.2.rst1657 :data:`~ssl.OP_NO_SSLv2` which disables the insecure and obsolete SSLv2