Is there any simple way of generating (and checking) MD5 checksums of a list of files in Python? (I have a small program I'm working on, and I'd like to confirm the checksums of the files).
|
feedback
|
|
You can use hashlib.md5() Note that sometimes you won't be able to fit the whole file in memory. In that case, you'll have to read chunks of 128 bytes sequentially and feed them to the Md5 function. See this question. | |||
feedback
|
|
There is a way that's pretty memory inefficient.
This will give you a list of tuples, each tuple containing the name of its file and its hash. I strongly question your use of MD5. You should be at least using SHA1. MD5 is known broken, and shouldn't be used for any purpose, even if you don't think your purpose is security sensitive. Here is a way that is more complex, but not memory inefficient:
| |||||||||||
feedback
|
md5sum? – KennyTM Aug 7 '10 at 19:55