Searched refs:OP_NO_SSLv2 (Results 1 – 14 of 14) sorted by relevance
/external/python/pyopenssl/examples/simple/ |
D | client.py | 37 ctx.set_options(SSL.OP_NO_SSLv2)
|
D | server.py | 38 ctx.set_options(SSL.OP_NO_SSLv2)
|
/external/python/cpython2/Lib/test/ |
D | test_ssl.py | 171 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/ |
D | SecureXMLRPCServer.py | 74 ctx.set_options(SSL.OP_NO_SSLv2)
|
/external/python/pyopenssl/tests/ |
D | test_ssl.py | 47 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/ |
D | ssl.py | 430 context.options |= OP_NO_SSLv2 480 context.options |= OP_NO_SSLv2
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_events.py | 880 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/ |
D | ssl.rst | 72 .. py:data:: OP_NO_SSLv2
|
/external/python/cpython3/Lib/test/ |
D | test_ssl.py | 337 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/ |
D | ssl.rst | 134 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/ |
D | ssl.rst | 256 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/ |
D | SSL.py | 138 OP_NO_SSLv2 = _lib.SSL_OP_NO_SSLv2 variable
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.0b1.rst | 549 SSLContext has improved default settings: OP_NO_SSLv2, OP_NO_SSLv3,
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.2.rst | 1657 :data:`~ssl.OP_NO_SSLv2` which disables the insecure and obsolete SSLv2
|