aboutsummaryrefslogtreecommitdiff
path: root/Modules/md5module.c
AgeCommit message (Expand)Author
2018-02-03bpo-32746: Fix multiple typos (GH-5144)Leo Arias
2017-01-23Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka
2016-09-06replace PY_LONG_LONG with long longBenjamin Peterson
2016-07-07Issue #27332: Fixed the type of the first argument of module-level functionsSerhiy Storchaka
2015-04-25Issue9951: update _hashopenssl and md5module to use _Py_strhex().Gregory P. Smith
2015-04-16Remove redundant check fro md5module.Christian Heimes
2015-04-03Issue #23501: Argumen Clinic now generates code into separate files by default.Serhiy Storchaka
2014-07-27Issue #20173: Convert sha1, sha256, sha512 and md5 to ArgumentClinic.Martin v. Löwis
2013-10-22Issue #18742: Expose the internal hash type object for ABCs.Christian Heimes
2013-08-15Change the builtin hash algorithms' names to lower case namesChristian Heimes
2013-06-04Reuse Py_MIN and Py_MAX macros: remove duplicate MIN/MAX macrosVictor Stinner
2013-01-03Issue #16847: Fixed improper use of _PyUnicode_CheckConsistency() inChristian Heimes
2013-01-03Issue #16847: Fixed improper use of _PyUnicode_CheckConsistency() inChristian Heimes
2012-10-31Issue #9566: Explicit downcast to fix compiler warnings on Win64Victor Stinner
2012-06-21md5_{init,process,done}: make staticdoko@ubuntu.com
2012-04-27Check newly created consistency using _PyUnicode_CheckConsistency(str, 1)Victor Stinner
2011-10-14Issue #13088: Add shared Py_hexdigits constant to format a number into base 16Victor Stinner
2011-09-28Implement PEP 393.Martin v. Löwis
2011-07-08Issue #9566: cast unsigned int to Py_ssize_t in md5 and sha1 modulesVictor Stinner
2011-01-04Issue #9566: use Py_ssize_t instead of intVictor Stinner
2010-05-09Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou
2009-03-03Fixed memory leak on failure. This is related to issue5403 but won't crash on...Hirokazu Yamamoto
2009-02-12Fixes Issue #3745: Fix hashlib to always reject unicode and nonGregory P. Smith
2009-02-02Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson
2008-08-14Use s* to receive data. Fixes #3552.Martin v. Löwis
2008-06-11Fix module initialization glitches.Martin v. Löwis
2008-06-11Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis
2008-05-26Renamed PyString to PyBytesChristian Heimes
2007-12-19#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes
2007-12-02Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes
2007-11-06Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum
2007-09-09Adds stand alone _md5 and _sha1 modules for use by hashlib on systemsGregory P. Smith
2007-06-06Merged revisions 55631-55794 via svnmerge fromGuido van Rossum
2006-04-21Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters
2006-01-19Check return result from Py_InitModule*(). This API can fail.Neal Norwitz
2005-08-21[ sf.net patch # 1121611 ]Gregory P. Smith
2003-07-08typoSkip Montanaro
2002-10-11SF #621948, update docstring for md5 by David M. Cooke. Will backport.Neal Norwitz
2002-08-02Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond
2002-07-17Removed more stray instances of statichere, but left _sre.c alone.Tim Peters
2002-07-17staticforward bites the dust.Jeremy Hylton
2002-06-13Patch #568124: Add doc string macros.Martin v. Löwis
2002-03-31Remove METH_OLDARGS:Neal Norwitz
2002-03-25Remove many uses of PyArg_NoArgs macro, change METH_OLDARGS to METH_NOARGS.Neal Norwitz
2001-12-08Patch supplied by Burton Radons for his own SF bug #487390: ModifyingGuido van Rossum
2001-11-02Simplify initmd5() to use PyModule_AddIntConstant().Fred Drake
2001-11-02[Patch #476612] Add attributes from PEP247 to the md5 and sha modulesAndrew M. Kuchling
2000-09-01REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum
2000-08-15md5_hexdigest(): After a brief conversation with TP, added hexdigest()Barry Warsaw
2000-08-03Use METH_OLDARGS instead of numeric constant 0 in method def. tablesAndrew M. Kuchling