mirror of
https://github.com/python/cpython.git
synced 2025-11-18 10:19:40 +00:00
Issue #18135: ssl.SSLSocket.write() now raises an OverflowError if the input
string in longer than 2 gigabytes, and ssl.SSLContext.load_cert_chain() raises a ValueError if the password is longer than 2 gigabytes. The ssl module does not support partial write.
This commit is contained in:
parent
51cee7d24a
commit
6efa965a27
2 changed files with 11 additions and 5 deletions
|
|
@ -38,9 +38,10 @@ Core and Builtins
|
|||
Library
|
||||
-------
|
||||
|
||||
- Issue #18135: Fix a possible integer overflow in ssl.SSLSocket.write()
|
||||
and in ssl.SSLContext.load_cert_chain() for strings and passwords longer than
|
||||
2 gigabytes.
|
||||
- Issue #18135: ssl.SSLSocket.write() now raises an OverflowError if the input
|
||||
string in longer than 2 gigabytes, and ssl.SSLContext.load_cert_chain()
|
||||
raises a ValueError if the password is longer than 2 gigabytes. The ssl
|
||||
module does not support partial write.
|
||||
|
||||
- Issue #18248: Fix libffi build on AIX.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue