summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_hashlib.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* bpo-9216: Expose OpenSSL FIPS_mode() as _hashlib.get_fips_mode() (GH-19703)Victor Stinner2020-04-291-0/+5
* bpo-40275: Move requires_hashdigest() to test.support.hashlib_helper (GH-19716)Hai Shi2020-04-291-1/+0
* bpo-38270: More fixes for strict crypto policy (GH-16418)Christian Heimes2019-09-271-1/+13
* bpo-38142: Updated _hashopenssl.c to be PEP 384 compliant (#16071)Christian Heimes2019-09-251-10/+0
* bpo-38153: Normalize hashlib algorithm names (GH-16083)Christian Heimes2019-09-131-0/+12
* bpo-9216: Add usedforsecurity to hashlib constructors (GH-16044)Christian Heimes2019-09-131-0/+9
* bpo-38132: Simplify _hashopenssl code (GH-16023)Christian Heimes2019-09-121-0/+3
* bpo-34922: Fix integer overflow in the digest() and hexdigest() methods (GH-9...Serhiy Storchaka2018-10-111-0/+13
* bpo-33729: Fix issues with arguments parsing in hashlib. (GH-8346)Serhiy Storchaka2018-07-311-1/+5
* bpo-20260: Implement non-bitwise unsigned int converters for Argument Clinic....Serhiy Storchaka2018-07-261-2/+2
* bpo-31787: Skip refleak check when _hashlib is not available (GH-5660)INADA Naoki2018-02-131-0/+1
* bpo-31787: Prevent refleaks when calling __init__() more than once (GH-3995)Oren Milman2018-02-131-0/+9
* closes bpo-32721: do not fail test_hashlib if _md5 isn't available (GH-5441)Benjamin Peterson2018-01-301-1/+1
* replace dynamic import with 'exec' with importlib.import_module (#5433)Benjamin Peterson2018-01-301-3/+4
* bpo-31933: fix blake2 multi-byte params on big endian platforms (#4250)Jack O'Connor2017-11-031-0/+36
* bpo-31234: Join threads in test_hashlib (#3573)Victor Stinner2017-09-141-13/+13
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-5/+1
* Add test cases for internal SHA3 helpersChristian Heimes2016-09-231-0/+21
* Issue 26798: fetch OSError and HTTPException like other tests that use open_u...Christian Heimes2016-09-081-2/+8
* Issue #16113: Add SHA-3 and SHAKE support to hashlib module.Christian Heimes2016-09-071-16/+141
* Download hashlib test vectors from pythontest.netChristian Heimes2016-09-061-1/+1
* Issue #26798: Add BLAKE2 (blake2b and blake2s) to hashlib.Christian Heimes2016-09-061-6/+195
* Issue #27928: Add scrypt (password-based key derivation function) to hashlib ...Christian Heimes2016-09-061-0/+47
* Issue #27076: Doc, comment and tests spelling fixesMartin Panter2016-05-261-1/+1
* Issue #26390: Fix and test pbkdf2_hmac() parameter namesMartin Panter2016-02-221-0/+3