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:
1313- Dropped support for Python 3.6.
1414- The minimum ``cryptography `` version is now 41.0.0.
1515- 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 >`_.
1618
1719Deprecations:
1820^^^^^^^^^^^^^ 
Original file line number Diff line number Diff line change 217217except  AttributeError :
218218    pass 
219219
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+ 
220226OP_ALL  =  _lib .SSL_OP_ALL 
221227
222228VERIFY_PEER  =  _lib .SSL_VERIFY_PEER 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments