summaryrefslogtreecommitdiffstats
path: root/Modules/sha1module.c
Commit message (Expand)AuthorAgeFilesLines
* gh-138342: Move _PyObject_VisitType() to the internal C API (#139734)Victor Stinner2025-10-081-0/+1
* gh-138342: Use a common utility for visiting an object's type (GH-138343)Peter Bierma2025-09-011-8/+1
* gh-131876: Revert "gh-131876: extract `_hashlib` helpers into a separate dire...Bénédikt Tran2025-08-011-5/+3
* gh-131876: extract `_hashlib` helpers into a separate directory (#136995)Bénédikt Tran2025-07-281-3/+5
* gh-135532: cleanup clinic `module` directives for cryptographic modules (#135...Bénédikt Tran2025-06-221-9/+16
* gh-135239: simpler use of mutexes in cryptographic modules (#135267)Bénédikt Tran2025-06-221-36/+17
* gh-134696: align OpenSSL and HACL*-based hash functions constructors AC signa...Bénédikt Tran2025-05-311-3/+9
* gh-132993: expose `HASHLIB_GIL_MINSIZE` to private extension modules (#132999)Bénédikt Tran2025-04-271-10/+17
* gh-131418: remove unused legacy typedefs in `{md5,sha1}module.c` (#131420)Bénédikt Tran2025-03-231-9/+0
* gh-131316: handle NULL values returned by HACL* functions (#131324)Bénédikt Tran2025-03-171-15/+35
* gh-111178: Change Argument Clinic signature for METH_O (#130682)Victor Stinner2025-03-111-2/+2
* gh-111178: fix UBSan failures in `Modules/{blake2,md5,sha1,sha2,sha3}module.c...Bénédikt Tran2025-01-271-18/+12
* gh-116322: Add Py_mod_gil module slot (#116882)Brett Simmers2024-05-031-0/+1
* gh-99108: Refresh HACL*; update modules accordingly; fix namespacing (GH-117237)Jonathan Protzenko2024-03-261-9/+9
* gh-111916: Make hashlib related modules thread-safe without the GIL (#111981)Tomas R2023-11-151-10/+9
* gh-86493: Modernize modules initialization code (GH-106858)Serhiy Storchaka2023-07-251-8/+1
* Fix missing/incomplete NULL checks in multiple source files (#104564)chgnrdv2023-05-231-0/+3
* gh-99108: Release the GIL around hashlib built-in computation (#104675)Gregory P. Smith2023-05-231-3/+34
* gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)Eric Snow2023-05-051-0/+1
* gh-101476: Use _PyType_GetModuleState where applicable (#102188)Erlend E. Aasland2023-02-241-1/+2
* gh-99108: Import MD5 and SHA1 from HACL* (#102089)Jonathan Protzenko2023-02-221-261/+21
* bpo-43974: Move Py_BUILD_CORE_MODULE into module code (GH-29157)Christian Heimes2021-10-221-0/+3
* bpo-45434: Remove pystrhex.h header file (GH-28923)Victor Stinner2021-10-131-1/+1
* Fix typos in the Modules directory (GH-28761)Christian Clauss2021-10-071-1/+1
* bpo-42972: Fully support GC for hashlib heap types (GH-26374)Erlend Egeberg Aasland2021-05-271-3/+14
* bpo-43908: Mark ssl, hash, and hmac types as immutable (GH-25792)Christian Heimes2021-05-021-1/+1
* bpo-43916: _md5.md5 uses Py_TPFLAGS_DISALLOW_INSTANTIATION (GH-25753)Victor Stinner2021-04-301-2/+2
* bpo-43204: Fix LibTomCrypt URL in md5module.c and sha*module.c comments (GH-2...Erlend Egeberg Aasland2021-02-121-1/+1
* bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)Victor Stinner2020-12-011-1/+1
* bpo-1635741: Port _sha1, _sha512, _md5 to multiphase init (GH-21818)Mohamed Koubaa2020-09-061-64/+92
* bpo-40865: Remove unused insint() macro from hash modules (GH-20627)Erlend Egeberg Aasland2020-06-041-3/+0
* bpo-39573: Add Py_SET_TYPE() function (GH-18394)Victor Stinner2020-02-071-3/+5
* bpo-9216: Add usedforsecurity to hashlib constructors (GH-16044)Christian Heimes2019-09-131-2/+4
* bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...Jeroen Demeyer2019-05-311-2/+2
* bpo-20216: Correct docstrings of digest() methods in hashlib. (GH-9873)Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి)2018-10-191-2/+2
* Fix misleading mentions of tp_size in comments (GH-9093)Peter Eisentraut2018-09-101-1/+1
* Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka2017-01-231-2/+1
* replace PY_LONG_LONG with long longBenjamin Peterson2016-09-061-1/+1
* Issue #27332: Fixed the type of the first argument of module-level functionsSerhiy Storchaka2016-07-071-2/+2
* Implements issue #9951: Adds a hex() method to bytes, bytearray, & memoryview.Gregory P. Smith2015-04-251-21/+2
* Issue #23501: Argumen Clinic now generates code into separate files by default.Serhiy Storchaka2015-04-031-97/+6
* Issue #20173: Convert sha1, sha256, sha512 and md5 to ArgumentClinic.Martin v. Löwis2014-07-271-32/+144
* Issue #18742: Expose the internal hash type object for ABCs.Christian Heimes2013-10-221-1/+10
* Change the builtin hash algorithms' names to lower case namesChristian Heimes2013-08-151-1/+1
* Issue #18599: Fix name attribute of _sha1.sha1() object. It now returnsChristian Heimes2013-07-301-1/+1
|\
| * Issue #18599: Fix name attribute of _sha1.sha1() object. It now returnsChristian Heimes2013-07-301-1/+1
* | Reuse Py_MIN and Py_MAX macros: remove duplicate MIN/MAX macrosVictor Stinner2013-06-041-5/+1
* | merge 3.3Benjamin Peterson2013-04-161-7/+2
|\ \ | |/
| * remove pointless code (closes #17738)Benjamin Peterson2013-04-161-7/+2
* | Issue #16847: Fixed improper use of _PyUnicode_CheckConsistency() inChristian Heimes2013-01-031-0/+2
|\ \ | |/