summaryrefslogtreecommitdiffstats
path: root/Doc/library/hashlib.rst
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2013-10-19 12:24:44 (GMT)
committerChristian Heimes <christian@cheimes.de>2013-10-19 12:24:44 (GMT)
commite723622775172a2516f43721d998aae95f32e59d (patch)
treed8c027abf13a9145ad6636e9cef34dfa4a5a4151 /Doc/library/hashlib.rst
parentfcd8de2d86f15797e6952551b5baa0beb7a7c668 (diff)
downloadcpython-e723622775172a2516f43721d998aae95f32e59d.zip
cpython-e723622775172a2516f43721d998aae95f32e59d.tar.gz
cpython-e723622775172a2516f43721d998aae95f32e59d.tar.bz2
Issue #18582: provide a faster C implementation of pbkdf2_hmac that works with OpenSSL < 1.0
Diffstat (limited to 'Doc/library/hashlib.rst')
-rw-r--r--Doc/library/hashlib.rst8
1 files changed, 3 insertions, 5 deletions
diff --git a/Doc/library/hashlib.rst b/Doc/library/hashlib.rst
index 677d530..b1daba1 100644
--- a/Doc/library/hashlib.rst
+++ b/Doc/library/hashlib.rst
@@ -212,11 +212,9 @@ slow and include a salt.
.. versionadded:: 3.4
- .. note:: A fast implementation of *pbkdf2_hmac* is only available with
- OpenSSL 1.0 and newer. The Python implementation uses an inline
- version of :mod:`hmac` and is about three times slower. Contrary to
- OpenSSL's current code the length of the password has only a minimal
- impact on the runtime of the Python implementation.
+ .. note:: A fast implementation of *pbkdf2_hmac* is available with OpenSSL.
+ The Python implementation uses an inline version of :mod:`hmac`. It is
+ about three times slower and doesn't release the GIL.
.. seealso::