File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ Backward-incompatible changes:
13
13
- Dropped support for Python 3.6.
14
14
- The minimum ``cryptography `` version is now 41.0.0.
15
15
- Removed ``OpenSSL.crypto.loads_pkcs7 `` and ``OpenSSL.crypto.loads_pkcs12 `` which had been deprecated for 3 years.
16
+ - Added ``OpenSSL.SSL.OP_LEGACY_SERVER_CONNECT `` to allow legacy insecure renegotiation between OpenSSL and unpatched servers.
17
+ `#1234 <https://github.com/pyca/pyopenssl/pull/1234 >`_.
16
18
17
19
Deprecations:
18
20
^^^^^^^^^^^^^
Original file line number Diff line number Diff line change 217
217
except AttributeError :
218
218
pass
219
219
220
+ try :
221
+ OP_LEGACY_SERVER_CONNECT = _lib .SSL_OP_LEGACY_SERVER_CONNECT
222
+ __all__ .append ("OP_LEGACY_SERVER_CONNECT" )
223
+ except AttributeError :
224
+ pass
225
+
220
226
OP_ALL = _lib .SSL_OP_ALL
221
227
222
228
VERIFY_PEER = _lib .SSL_VERIFY_PEER
You can’t perform that action at this time.
0 commit comments