summaryrefslogtreecommitdiff
path: root/Modules/_sha3
Commit message (Expand)AuthorAgeFilesLines
* closes bpo-35643: Fix a SyntaxWarning: invalid escape sequence in Modules/_sh...Miss Islington (bot)2019-01-021-1/+1
* [3.7] bpo-34922: Fix integer overflow in the digest() and hexdigest() methods...Serhiy Storchaka2018-10-111-1/+4
* [3.7] Fix misleading mentions of tp_size in comments. (GH-9136)Benjamin Peterson2018-09-101-1/+1
* [3.7] bpo-33729: Fix issues with arguments parsing in hashlib. (GH-8346) (GH-...Serhiy Storchaka2018-07-312-115/+56
* bpo-32240: Add the const qualifier to declarations of PyObject* array argumen...Serhiy Storchaka2017-12-151-3/+3
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-14/+0
* bpo-29464: Rename METH_FASTCALL to METH_FASTCALL|METH_KEYWORDS and make (#1955)Serhiy Storchaka2017-07-031-3/+3
* Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka2017-01-231-2/+1
* Run Argument Clinic: METH_VARARGS=>METH_FASTCALLVictor Stinner2017-01-171-1/+1
* Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywordsVictor Stinner2017-01-171-2/+2
* Don't define PY_WITH_KECCAKChristian Heimes2016-09-211-2/+0
* Issue #27810: Regenerate Argument Clinic.Serhiy Storchaka2016-09-111-7/+7
* clinic: PY_LONG_LONG -> long longBenjamin Peterson2016-09-081-10/+16
* sha3: let's keep it simple and always allocate enough extra space for uint64_...Christian Heimes2016-09-081-3/+2
* Issue #16113: SHA3: allocate extra memory for lane extraction and check retur...Christian Heimes2016-09-081-4/+12
* Issue #16113: one more C90 violation in big endian code.Christian Heimes2016-09-071-1/+1
* Issue #16113: take 2 on big endian machines.Christian Heimes2016-09-071-9/+11
* Issue #16113: KeccakP-1600-opt64 does not support big endian platforms yet.Christian Heimes2016-09-071-1/+4
* Issue #16113: Add SHA-3 and SHAKE support to hashlib module.Christian Heimes2016-09-0720-0/+6299
* * Issue #16113: Remove sha3 module again.Martin v. Löwis2014-01-0323-7930/+0
* Issue #19520: Fix (the last!) compiler warning on 32bit Windows, in _sha3Zachary Ware2013-11-171-1/+1
* Issue #18742: Expose the internal hash type object for ABCs.Christian Heimes2013-10-221-1/+9
* yet another WITH_THREADS typoChristian Heimes2013-07-311-1/+1
* Fix _sha3 module to actually release the GIL around its update function.Christian Heimes2013-07-311-1/+1
* Issue #16847: Fixed improper use of _PyUnicode_CheckConsistency() inChristian Heimes2013-01-031-0/+2
* Issue #16166: Add PY_LITTLE_ENDIAN and PY_BIG_ENDIAN macros and unifiedChristian Heimes2012-10-174-11/+14
* Issue #16234: Modify sha3's block_size method to return NotImplemented.Christian Heimes2012-10-141-2/+6
* Update comment: SPARC requires proper alignmentChristian Heimes2012-10-141-1/+2
* get 64bit platforms without uint64 right againChristian Heimes2012-10-141-3/+5
* Force 32bit Keccak implementation on SPARC. It look like the Solaris CC compi...Christian Heimes2012-10-141-8/+14
* Keccak: fromBytesToWord() and fromWordToBytes() are required on 64bit big end...Christian Heimes2012-10-141-4/+6
* brg_endian.h is back againChristian Heimes2012-10-071-1/+0
* re-add brg_endian.h to debug issue in big endian SPARC machineChristian Heimes2012-10-075-7/+150
* remove #warning from sha3module.cChristian Heimes2012-10-061-1/+0
* fix possible memory leak, dealloc newobjChristian Heimes2012-10-061-2/+1
* Issue #16113: integrade SHA-3 (Keccak) patch from http://hg.python.org/sandbo...Christian Heimes2012-10-0622-0/+7762