summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_hashlib.py
Commit message (Expand)AuthorAgeFilesLines
* gh-141907: Better handle support for SHA3 for test_hashlib (GH-141908)Christian Marangi2025-11-241-9/+18
* gh-137412: fix `default_builtin_hashes` values in `test_hashlib.py` (#137413)Bénédikt Tran2025-08-071-11/+4
* gh-136547: fix `hashlib_helper` for blocking and requesting digests (#136762)Bénédikt Tran2025-07-201-7/+11
* gh-136787: improve exception messages for invalid hash algorithms (#136802)Bénédikt Tran2025-07-201-2/+6
* gh-90733: improve `hashlib.scrypt` interface (#136100)Bénédikt Tran2025-07-141-46/+71
* gh-135571: Guard `_hashlib` usage in `test_hashlib.py` (#135572)Will Childs-Klein2025-06-271-2/+6
* gh-135532: use `defining_class` for copying BLAKE-2 and SHA-3 objects (#135838)Bénédikt Tran2025-06-241-0/+10
* gh-135239: simpler use of mutexes in cryptographic modules (#135267)Bénédikt Tran2025-06-221-27/+48
* gh-135759: consistently reject negative sizes in SHAKE digests (#135767)Bénédikt Tran2025-06-211-15/+49
* gh-134978: deprecate `string` keyword parameter for hash function constructor...Bénédikt Tran2025-06-021-3/+17
* gh-134696: fix `hashlib` tests for FIPS-only BLAKE-2 buildbot (#134968)Bénédikt Tran2025-05-311-0/+19
* gh-134696: align OpenSSL and HACL*-based hash functions constructors AC signa...Bénédikt Tran2025-05-311-7/+55
* gh-134357: Remove unused imports in tests (#134340)Hugo van Kemenade2025-05-251-1/+0
* gh-71339: Use new assertion methods in tests (GH-129046)Serhiy Storchaka2025-05-221-2/+2
* gh-132993: expose `HASHLIB_GIL_MINSIZE` to private extension modules (#132999)Bénédikt Tran2025-04-271-3/+9
* gh-91069: do not disable `sha3` in `test_hashlib` under UBSan (#133001)Bénédikt Tran2025-04-271-16/+14
* gh-122179: Fix hashlib.file_digest and non-blocking I/O (GH-122183)Sebastian Rittau2025-04-211-0/+9
* gh-128770: raise warnings as errors in test suite - except for test_socket wh...Thomas Grainger2025-03-271-1/+6
* gh-128657: Skip test_get_builtin_constructor when running with --parallel-thr...Sam Gross2025-02-111-0/+1
* gh-128657: Run test_hashlib with `--parallel-threads` (GH-129833)Sam Gross2025-02-081-22/+19
* gh-99108: Add HACL* Blake2 implementation to hashlib (GH-119316)Jonathan Protzenko2024-08-131-0/+11
* gh-99108: Refresh HACL* from upstream (#104401)Jonathan Protzenko2023-05-111-0/+9
* gh-102515: Remove unused imports in the `Lib/` directory (#102516)Alex Waygood2023-03-081-1/+0
* gh-99108: Refactor _sha256 & _sha512 into _sha2. (#101924)Gregory P. Smith2023-02-161-13/+9
* gh-99108: Replace SHA2-224 & 256 with verified code from HACL* (#99109)Jonathan Protzenko2023-02-071-0/+10
* gh-94199: Remove hashlib.pbkdf2_hmac() Python implementation (GH-94200)Victor Stinner2022-06-281-9/+1
* gh-69443: Add test.support.Py_DEBUG constant (#93226)Victor Stinner2022-05-251-3/+1
* bpo-40280: Detect missing threading on WASM platforms (GH-32352)Christian Heimes2022-04-071-0/+1
* bpo-47101: list only activated algorithms in hashlib.algorithms_available (GH...Christian Heimes2022-03-231-0/+4
* bpo-45150: Fix testing under FIPS mode (GH-32046)Christian Heimes2022-03-221-0/+5
* bpo-45150: Add hashlib.file_digest() for efficient file hashing (GH-31930)Christian Heimes2022-03-221-0/+54
* bpo-46913: test_hashlib skips _sha3 tests on UBSan (GH-31673)Victor Stinner2022-03-031-8/+26
* bpo-40479: Fix hashlib's usedforsecurity for OpenSSL 3.0.0 (GH-30455)Christian Heimes2022-01-131-6/+7
* bpo-44048: Fix two hashlib test cases under FIPS mode (GH-26470)stratakis2021-06-041-2/+10
* bpo-43988: Use check disallow instantiation helper (GH-26392)Erlend Egeberg Aasland2021-05-271-11/+4
* bpo-43908: Mark ssl, hash, and hmac types as immutable (GH-25792)Christian Heimes2021-05-021-0/+9
* bpo-43916: Rewrite new hashlib tests, fix typo (GH-25791)Christian Heimes2021-05-011-30/+12
* bpo-43916: _md5.md5 uses Py_TPFLAGS_DISALLOW_INSTANTIATION (GH-25753)Victor Stinner2021-04-301-1/+32
* bpo-43916: Remove _disabled_new() function (GH-25745)Victor Stinner2021-04-301-2/+2
* bpo-43880: Show DeprecationWarnings for deprecated ssl module features (GH-25...Christian Heimes2021-04-191-1/+5
* bpo-37630: Do not skip the sha3 tests in case of missing builtin sha3 module ...stratakis2021-04-171-22/+0
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25171)Inada Naoki2021-04-041-1/+1
* bpo-40637: Don't test builtin PBKDF2 without builtin hashes (GH-20980)Christian Heimes2020-11-171-9/+18
* bpo-40275: Use new test.support helper submodules in tests (GH-21317)Hai Shi2020-07-061-1/+2
* bpo-40637: Do not emit warnings for disabled builtin hashes (GH-20937)stratakis2020-06-171-1/+1
* bpo-40275: Adding threading_helper submodule in test.support (GH-20263)Hai Shi2020-05-271-1/+2
* bpo-40637: Fix test_pbkdf2_hmac_py for missing sha1 (#20422)Christian Heimes2020-05-261-9/+23
* bpo-9216: hashlib usedforsecurity fixes (GH-20258)Christian Heimes2020-05-221-32/+82
* bpo-37630: Use SHA3 and SHAKE XOF from OpenSSL (GH-16049)Christian Heimes2020-05-161-1/+17
* bpo-40443: Remove unused imports in tests (GH-19804)Victor Stinner2020-04-301-1/+0