summaryrefslogtreecommitdiff
path: root/Modules/sha512module.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-20216: Correct docstrings of digest() methods in hashlib. (GH-9873) (GH-9...Miss Islington (bot)2018-10-201-2/+2
* [3.7] Fix misleading mentions of tp_size in comments. (GH-9136)Benjamin Peterson2018-09-101-2/+2
* Removed redundant Argument Clinic directives.Serhiy Storchaka2017-02-041-9/+0
* Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka2017-01-231-2/+1
* stop using Py_LL and Py_ULLBenjamin Peterson2016-09-181-83/+83
* replace PY_LONG_LONG with long longBenjamin Peterson2016-09-061-8/+4
* Issue #27332: Fixed the type of the first argument of module-level functionsSerhiy Storchaka2016-07-071-4/+4
* Issue #27076: Doc, comment and tests spelling fixesMartin Panter2016-05-261-1/+1
* 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-153/+10
* Issue #20173: Convert sha1, sha256, sha512 and md5 to ArgumentClinic.Martin v. Löwis2014-07-271-47/+221
* Issue #18742: Expose the internal hash type object for ABCs.Christian Heimes2013-10-221-1/+12
* Change the builtin hash algorithms' names to lower case namesChristian Heimes2013-08-151-2/+2
* Fix compiler warnings: explicit cast to int in sha256/sha512 modulesVictor Stinner2013-05-081-2/+2
* Issue #16847: Fixed improper use of _PyUnicode_CheckConsistency() inChristian Heimes2013-01-031-0/+2
|\
| * 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-171-16/+6
|/
* Check newly created consistency using _PyUnicode_CheckConsistency(str, 1)Victor Stinner2012-04-271-0/+1
* Issue #13088: Add shared Py_hexdigits constant to format a number into base 16Victor Stinner2011-10-141-5/+3
* Implement PEP 393.Martin v. Löwis2011-09-281-7/+3
* Issue #9566: use Py_ssize_t instead of intVictor Stinner2011-01-041-2/+2
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-73/+73
* remove old undocumented compat interfaces in hashlib and pwd #5881Benjamin Peterson2009-05-041-3/+0
* Fixed memory leak on failure. This is related to issue5403 but won't crash on...Hirokazu Yamamoto2009-03-031-2/+12
* Fixes Issue #3745: Fix hashlib to always reject unicode and nonGregory P. Smith2009-02-121-16/+30
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-2/+2
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-8/+17
* Renamed PyString to PyBytesChristian Heimes2008-05-261-1/+1
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-2/+2
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-1/+1
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-1/+1
* Adds stand alone _md5 and _sha1 modules for use by hashlib on systemsGregory P. Smith2007-09-091-2/+2
* Use unicodeNeal Norwitz2007-08-251-3/+3
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-6/+4
* Change hashlib to return bytes from digest() instead of str8.Guido van Rossum2007-07-091-3/+3
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-17/+7
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-99/+99
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-2/+2
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Added the 'ULL' prefix to the unsigned long long literal constants.Armin Rigo2005-12-141-99/+99
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-2/+2
* Remove the C99 "ULL" suffix from the 64bit unsigned long constants.Gregory P. Smith2005-08-231-99/+99
* [ sf.net patch # 1121611 ]Gregory P. Smith2005-08-211-0/+777