summaryrefslogtreecommitdiffstats
path: root/Tools/scripts/md5sum.py
Commit message (Collapse)AuthorAgeFilesLines
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-3/+3
| | | | | | (a) "except E, V" -> "except E as V" (b) V is now limited to a simple name (local variable) (c) V is now deleted at the end of the except block
* This started opening files in text mode by default in the 2.3 release,Tim Peters2003-08-181-10/+11
| | | | | | | which is a disaster on Windows. Restored the binary default of all previous releases. Also minor code cleanups. Bugfix candidate!
* Rename sum5.py to md5sum.py, because sum5.py is more interestingAndrew M. Kuchling2003-05-131-21/+81
| | | | as an example program
* Use 2.1's .hexdigest() methodAndrew M. Kuchling2002-04-171-5/+2
|
* This is a trivial command line utility to print MD5 checksums.Guido van Rossum2001-06-221-0/+32
I published it on the web as http://www.python.org/2.1/md5sum.py so I thought I might as well check it in. Works with Python 1.5.2 and later. Works like the Linux tool ``mdfsum file ...'' except it doesn't take any options or read stdin.