| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix typos in warnings, docstrings, comments and text files (#123597) | abstractee | 2024-09-03 | 1 | -1/+1 |
|
|
* | gh-120417: Add #noqa to used imports in the stdlib (#120421) | Victor Stinner | 2024-06-13 | 1 | -1/+1 |
|
|
* | gh-99108: Refactor _sha256 & _sha512 into _sha2. (#101924) | Gregory P. Smith | 2023-02-16 | 1 | -6/+6 |
|
|
* | gh-94199: Remove hashlib.pbkdf2_hmac() Python implementation (GH-94200) | Victor Stinner | 2022-06-28 | 1 | -66/+4 |
|
|
* | bpo-45150: Add hashlib.file_digest() for efficient file hashing (GH-31930) | Christian Heimes | 2022-03-22 | 1 | -1/+47 |
|
|
* | bpo-45155: Apply new byteorder default values for int.to/from_bytes (GH-28465) | Raymond Hettinger | 2021-09-20 | 1 | -4/+4 |
|
|
* | bpo-43880: Show DeprecationWarnings for deprecated ssl module features (GH-25... | Christian Heimes | 2021-04-19 | 1 | -0/+6 |
|
|
* | bpo-40645: use C implementation of HMAC (GH-24920) | Christian Heimes | 2021-03-27 | 1 | -0/+1 |
|
|
* | Improve blake2 comment for Victor (GH-20981) | Christian Heimes | 2020-06-19 | 1 | -5/+7 |
|
|
* | bpo-40695: Limit hashlib builtin hash fallback (GH-20259) | Christian Heimes | 2020-05-25 | 1 | -2/+3 |
|
|
* | bpo-9216: hashlib usedforsecurity fixes (GH-20258) | Christian Heimes | 2020-05-22 | 1 | -1/+1 |
|
|
* | bpo-37630: Use SHA3 and SHAKE XOF from OpenSSL (GH-16049) | Christian Heimes | 2020-05-16 | 1 | -2/+2 |
|
|
* | bpo-38153: Normalize hashlib algorithm names (GH-16083) | Christian Heimes | 2019-09-13 | 1 | -11/+18 |
|
|
* | bpo-33729: Fix issues with arguments parsing in hashlib. (GH-8346) | Serhiy Storchaka | 2018-07-31 | 1 | -14/+15 |
|
|
* | Fix miscellaneous typos (#4275) | luzpaz | 2017-11-05 | 1 | -1/+1 |
|
|
* | Issue #16113: Add SHA-3 and SHAKE support to hashlib module. | Christian Heimes | 2016-09-07 | 1 | -2/+15 |
|
|
* | Bypass __get_openssl_constructor() and always use our own blake2 implementation | Christian Heimes | 2016-09-07 | 1 | -0/+3 |
|
|
* | Issue #26798: Add BLAKE2 (blake2b and blake2s) to hashlib. | Christian Heimes | 2016-09-06 | 1 | -10/+22 |
|
|
* | Issue #27928: Add scrypt (password-based key derivation function) to hashlib ... | Christian Heimes | 2016-09-06 | 1 | -0/+6 |
|
|
* | Removed duplicated words in in comments and docs. | Serhiy Storchaka | 2014-12-01 | 1 | -1/+1 |
|
|
* | * Issue #16113: Remove sha3 module again. | Martin v. Löwis | 2014-01-03 | 1 | -9/+1 |
|
|
* | Issue #18742: Rework the internal hashlib construtor to pave the road for ABCs. | Christian Heimes | 2013-10-22 | 1 | -21/+20 |
|
|
* | Issue #19254: Provide an optimized Python implementation of PBKDF2_HMAC | Christian Heimes | 2013-10-19 | 1 | -6/+63 |
|
|
* | Issue #18582: Add 'pbkdf2_hmac' to the hashlib module. | Christian Heimes | 2013-10-12 | 1 | -0/+8 |
|
|
* | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) | Brett Cannon | 2013-07-04 | 1 | -2/+2 |
|
|
* | Issue #18200: Update the stdlib (except tests) to use | Brett Cannon | 2013-06-14 | 1 | -2/+2 |
|
|
* | Issue #16113: integrade SHA-3 (Keccak) patch from http://hg.python.org/sandbo... | Christian Heimes | 2012-10-06 | 1 | -1/+14 |
|
|
* | Consistently raise a TypeError when a non str is passed to hashlib.new | Gregory P. Smith | 2012-07-22 | 1 | -1/+1 |
|
|
* | fix whitespace | Gregory P. Smith | 2011-05-14 | 1 | -1/+1 |
|
|
* | Fixes Issue #12059: Properly handle missing hash functions even when | Gregory P. Smith | 2011-05-14 | 1 | -20/+23 |
|
|
* | Make the type consistent for hashlib algorithm constants. (Reviewed by Benja... | Raymond Hettinger | 2011-01-24 | 1 | -2/+2 |
|
|
* | hashlib has two new constant attributes: algorithms_guaranteed and | Gregory P. Smith | 2010-09-06 | 1 | -7/+10 |
|
|
* | Merged revisions 78528 via svnmerge from | Gregory P. Smith | 2010-03-01 | 1 | -1/+3 |
|
|
* | Merged revisions 74479 via svnmerge from | Gregory P. Smith | 2009-08-16 | 1 | -33/+33 |
|
|
* | issue3715: docstring representation of hex escaped string needs to be double | Gregory P. Smith | 2008-08-31 | 1 | -1/+1 |
|
|
* | Merged revisions 61538-61540,61556,61559-61560,61563,61565,61571,61575-61576,... | Christian Heimes | 2008-03-19 | 1 | -0/+3 |
|
|
* | Adds stand alone _md5 and _sha1 modules for use by hashlib on systems | Gregory P. Smith | 2007-09-09 | 1 | -12/+11 |
|
|
* | Raise statement normalization in Lib/. | Collin Winter | 2007-08-30 | 1 | -1/+1 |
|
|
* | More changes needed to make things work once bytes and str are truly divorced. | Guido van Rossum | 2007-08-27 | 1 | -16/+16 |
|
|
* | Use the new buffer api for input data. | Gregory P. Smith | 2007-08-26 | 1 | -1/+1 |
|
|
* | Four months of trunk changes (including a few releases...) | Thomas Wouters | 2006-12-13 | 1 | -1/+30 |
|
|
* | Patch #1550800: make exec a function. | Georg Brandl | 2006-09-06 | 1 | -2/+2 |
|
|
* | Whitespace normalization (via reindent.py). | Tim Peters | 2005-08-26 | 1 | -1/+0 |
|
|
* | [ sf.net patch # 1121611 ] | Gregory P. Smith | 2005-08-21 | 1 | -0/+110 |
|
|