summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2014-08-23 04:48:22 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2014-08-23 04:48:22 (GMT)
commitb51b1345bd520d43b62f0b04a36c67010202c228 (patch)
tree4192eac8773e98bcef7cdc67792b4f39989d061f /Doc
parentef3b9ed0ac99c3825ebf7b716d504d52d080f8c2 (diff)
parenta5bbc2ea3ddf4af710770f26fd6809eeeff3129e (diff)
downloadcpython-b51b1345bd520d43b62f0b04a36c67010202c228.zip
cpython-b51b1345bd520d43b62f0b04a36c67010202c228.tar.gz
cpython-b51b1345bd520d43b62f0b04a36c67010202c228.tar.bz2
Merge PEP 466 What's New in 2.7 changes from 3.4
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/2.7.rst22
1 files changed, 16 insertions, 6 deletions
diff --git a/Doc/whatsnew/2.7.rst b/Doc/whatsnew/2.7.rst
index 8e0d3aa..cbd83da 100644
--- a/Doc/whatsnew/2.7.rst
+++ b/Doc/whatsnew/2.7.rst
@@ -2547,13 +2547,23 @@ with the first of those changes appearing in the Python 2.7.7 release.
:pep:`466` related features added in Python 2.7.7:
-* :func:`hmac.compare_digest` was added to make a timing attack resistant
- comparison operation broadly available to Python 2 applications
- (backported by Alex Gaynor in :issue:`21306`)
+* :func:`hmac.compare_digest` was backported from Python 3 to make a timing
+ attack resistant comparison operation broadly available to Python 2
+ applications (backported by Alex Gaynor in :issue:`21306`)
-* the version of OpenSSL linked with the prebuilt Windows installers
- published on python.org was updated to 1.0.1g (contributed by
- Zachary Ware in :issue:`21462`)
+* upgraded to OpenSSL 1.0.1g for the prebuilt Windows installers published
+ on python.org (contributed by Zachary Ware in :issue:`21462`)
+
+
+:pep:`466` related features added in Python 2.7.8:
+
+* :func:`hashlib.pbkdf2_hmac` was backported from Python 3 to make a hashing
+ algorithm suitable for secure password storage broadly available to Python
+ 2 applications (backported by Alex Gaynor in :issue:`21304`)
+
+* upgraded to OpenSSL 1.0.1h for the prebuilt Windows installers published
+ on python.org (contributed by Zachary Ware in :issue:`21671` for
+ CVE-2014-0224)
.. ======================================================================