summaryrefslogtreecommitdiff
path: root/Lib/hashlib.py
Commit message (Expand)AuthorAgeFilesLines
* [3.7] bpo-33729: Fix issues with arguments parsing in hashlib. (GH-8346) (GH-...Serhiy Storchaka2018-07-311-14/+15
* Fix miscellaneous typos (#4275)luzpaz2017-11-051-1/+1
* Issue #16113: Add SHA-3 and SHAKE support to hashlib module.Christian Heimes2016-09-071-2/+15
* Bypass __get_openssl_constructor() and always use our own blake2 implementationChristian Heimes2016-09-071-0/+3
* Issue #26798: Add BLAKE2 (blake2b and blake2s) to hashlib.Christian Heimes2016-09-061-10/+22
* Issue #27928: Add scrypt (password-based key derivation function) to hashlib ...Christian Heimes2016-09-061-0/+6
* Removed duplicated words in in comments and docs.Serhiy Storchaka2014-12-011-1/+1
* * Issue #16113: Remove sha3 module again.Martin v. Löwis2014-01-031-9/+1
* Issue #18742: Rework the internal hashlib construtor to pave the road for ABCs.Christian Heimes2013-10-221-21/+20
* Issue #19254: Provide an optimized Python implementation of PBKDF2_HMACChristian Heimes2013-10-191-6/+63
* Issue #18582: Add 'pbkdf2_hmac' to the hashlib module.Christian Heimes2013-10-131-0/+8
* Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)Brett Cannon2013-07-041-2/+2
* Issue #18200: Update the stdlib (except tests) to useBrett Cannon2013-06-131-2/+2
* Issue #16113: integrade SHA-3 (Keccak) patch from http://hg.python.org/sandbo...Christian Heimes2012-10-061-1/+14
* Consistently raise a TypeError when a non str is passed to hashlib.newGregory P. Smith2012-07-211-1/+1
* fix whitespaceGregory P. Smith2011-05-141-1/+1
* Fixes Issue #12059: Properly handle missing hash functions even whenGregory P. Smith2011-05-141-20/+23
* Make the type consistent for hashlib algorithm constants. (Reviewed by Benja...Raymond Hettinger2011-01-241-2/+2
* hashlib has two new constant attributes: algorithms_guaranteed andGregory P. Smith2010-09-061-7/+10
* Merged revisions 78528 via svnmerge fromGregory P. Smith2010-03-011-1/+3
* Merged revisions 74479 via svnmerge fromGregory P. Smith2009-08-161-33/+33
* issue3715: docstring representation of hex escaped string needs to be doubleGregory P. Smith2008-08-311-1/+1
* Merged revisions 61538-61540,61556,61559-61560,61563,61565,61571,61575-61576,...Christian Heimes2008-03-191-0/+3
* Adds stand alone _md5 and _sha1 modules for use by hashlib on systemsGregory P. Smith2007-09-091-12/+11
* Raise statement normalization in Lib/.Collin Winter2007-08-301-1/+1
* More changes needed to make things work once bytes and str are truly divorced.Guido van Rossum2007-08-271-16/+16
* Use the new buffer api for input data.Gregory P. Smith2007-08-261-1/+1
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-1/+30
* Patch #1550800: make exec a function.Georg Brandl2006-09-061-2/+2
* Whitespace normalization (via reindent.py).Tim Peters2005-08-261-1/+0
* [ sf.net patch # 1121611 ]Gregory P. Smith2005-08-211-0/+110