summaryrefslogtreecommitdiffstats
path: root/Modules/sha1module.c
Commit message (Expand)AuthorAgeFilesLines
* 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: cast unsigned int to Py_ssize_t in md5 and sha1 modulesVictor Stinner2011-07-071-1/+1
* Issue #9566: use Py_ssize_t instead of intVictor Stinner2011-01-041-2/+2
* Rename some macros in the sha1 module to no longer conflict with termios.h.Brett Cannon2010-07-231-28/+28
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-39/+39
* Fixed memory leak on failure. This is related to issue5403 but won't crash on...Hirokazu Yamamoto2009-03-031-2/+7
* Fixes Issue #3745: Fix hashlib to always reject unicode and nonGregory P. Smith2009-02-121-5/+12
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-1/+1
* Zero-initialize buf. Fixes #3557.Martin v. Löwis2008-08-151-0/+1
* Use s* to receive data. Fixes #3552.Martin v. Löwis2008-08-141-10/+11
* Fix module initialization glitches.Martin v. Löwis2008-06-111-2/+0
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-5/+16
* 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-2/+2
* 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-0/+537