Home
last modified time | relevance | path

Searched refs:OP_NO_COMPRESSION (Results 1 – 11 of 11) sorted by relevance

/external/python/pyopenssl/doc/api/
Dssl.rst65 .. py:data:: OP_NO_COMPRESSION
/external/python/cpython3/Lib/test/
Dtest_ssl.py144 OP_NO_COMPRESSION = getattr(ssl, "OP_NO_COMPRESSION", 0) variable
338 ssl.OP_NO_COMPRESSION
1139 default |= (OP_NO_COMPRESSION | OP_CIPHER_SERVER_PREFERENCE |
1611 if OP_NO_COMPRESSION != 0:
1612 self.assertEqual(ctx.options & OP_NO_COMPRESSION,
1613 OP_NO_COMPRESSION)
3955 client_context.options |= ssl.OP_NO_COMPRESSION
3956 server_context.options |= ssl.OP_NO_COMPRESSION
/external/python/pyopenssl/tests/
Dtest_ssl.py98 OP_NO_COMPRESSION,
3374 OP_NO_COMPRESSION is None,
3384 assert OP_NO_COMPRESSION == 0x20000
/external/python/cpython2/Lib/test/
Dtest_ssl.py168 ssl.OP_NO_COMPRESSION
779 default |= ssl.OP_NO_COMPRESSION
2914 context.options |= ssl.OP_NO_COMPRESSION
/external/python/pyopenssl/src/OpenSSL/
DSSL.py179 OP_NO_COMPRESSION = _lib.SSL_OP_NO_COMPRESSION variable
/external/python/cpython3/Doc/library/
Dssl.rst870 .. data:: OP_NO_COMPRESSION
1285 you can use :data:`OP_NO_COMPRESSION` to disable SSL-level compression.
1458 :data:`OP_NO_COMPRESSION`, :data:`OP_CIPHER_SERVER_PREFERENCE`,
1995 <Options.OP_ALL|OP_NO_SSLv3|OP_NO_SSLv2|OP_NO_COMPRESSION: 2197947391>
/external/python/cpython3/Misc/NEWS.d/
D3.6.0b1.rst550 OP_NO_COMPRESSION, OP_CIPHER_SERVER_PREFERENCE, OP_SINGLE_DH_USE,
/external/python/pyopenssl/doc/
DChangeLog_old.txt185 * OpenSSL/ssl/ssl.c: Add MODE_RELEASE_BUFFERS and OP_NO_COMPRESSION
/external/python/cpython2/Doc/library/
Dssl.rst750 .. data:: OP_NO_COMPRESSION
981 you can use :data:`OP_NO_COMPRESSION` to disable SSL-level compression.
/external/python/cpython3/Doc/whatsnew/
D3.3.rst1954 :attr:`~ssl.OP_NO_COMPRESSION` can be used to disable compression.
/external/python/cpython3/Misc/
DHISTORY3105 - ssl.create_default_context() sets OP_NO_COMPRESSION to prevent CRIME.