diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-06-23 13:08:23 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-06-23 13:08:23 (GMT) |
commit | 9ee0203057e7a566e562233e2c48e0c752ecc989 (patch) | |
tree | ca755c229f4cd9f231ef0d6d10b3130a4b89ca14 /Misc | |
parent | 4569cd5eab5092c4508e6d0471eb9f535e71193a (diff) | |
download | cpython-9ee0203057e7a566e562233e2c48e0c752ecc989.zip cpython-9ee0203057e7a566e562233e2c48e0c752ecc989.tar.gz cpython-9ee0203057e7a566e562233e2c48e0c752ecc989.tar.bz2 |
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.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -35,6 +35,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 #18248: Fix libffi build on AIX. - Issue #18259: Declare sethostname in socketmodule.c for AIX |