How do I calculate the MD5 checksum of a file in Python?

226,209

Solution 1

In regards to your error and what's missing in your code. m is a name which is not defined for getmd5() function.

No offence, I know you are a beginner, but your code is all over the place. Let's look at your issues one by one :)

First, you are not using hashlib.md5.hexdigest() method correctly. Please refer explanation on hashlib functions in Python Doc Library. The correct way to return MD5 for provided string is to do something like this:

>>> import hashlib
>>> hashlib.md5("example string").hexdigest()
'2a53375ff139d9837e93a38a279d63e5'

However, you have a bigger problem here. You are calculating MD5 on a file name string, where in reality MD5 is calculated based on file contents. You will need to basically read file contents and pipe it though MD5. My next example is not very efficient, but something like this:

>>> import hashlib
>>> hashlib.md5(open('filename.exe','rb').read()).hexdigest()
'd41d8cd98f00b204e9800998ecf8427e'

As you can clearly see second MD5 hash is totally different from the first one. The reason for that is that we are pushing contents of the file through, not just file name.

A simple solution could be something like that:

# Import hashlib library (md5 method is part of it)
import hashlib

# File to check
file_name = 'filename.exe'

# Correct original md5 goes here
original_md5 = '5d41402abc4b2a76b9719d911017c592'  

# Open,close, read file and calculate MD5 on its contents 
with open(file_name, 'rb') as file_to_check:
    # read contents of the file
    data = file_to_check.read()    
    # pipe contents of the file through
    md5_returned = hashlib.md5(data).hexdigest()

# Finally compare original MD5 with freshly calculated
if original_md5 == md5_returned:
    print "MD5 verified."
else:
    print "MD5 verification failed!."

Please look at the post Python: Generating a MD5 checksum of a file. It explains in detail a couple of ways how it can be achieved efficiently.

Best of luck.

Solution 2

In Python 3.8+ you can do

import hashlib

with open("your_filename.png", "rb") as f:
    file_hash = hashlib.md5()
    while chunk := f.read(8192):
        file_hash.update(chunk)

print(file_hash.digest())
print(file_hash.hexdigest())  # to get a printable str instead of bytes

On Python 3.7 and below:

with open("your_filename.png", "rb") as f:
    file_hash = hashlib.md5()
    chunk = f.read(8192)
    while chunk:
        file_hash.update(chunk)
        chunk = f.read(8192)

print(file_hash.hexdigest())

This reads the file 8192 (or 2¹³) bytes at a time instead of all at once with f.read() to use less memory.


Consider using hashlib.blake2b instead of md5 (just replace md5 with blake2b in the above snippets). It's cryptographically secure and faster than MD5.

Solution 3

hashlib methods also support mmap module, so I often use

from hashlib import md5
from mmap import mmap, ACCESS_READ

path = ...
with open(path) as file, mmap(file.fileno(), 0, access=ACCESS_READ) as file:
    print(md5(file).hexdigest())

where path is the path to your file.

Ref: https://docs.python.org/library/mmap.html#mmap.mmap

Edit: Comparison with the plain-read method.

Plot of time and memory usage

from hashlib import md5
from mmap import ACCESS_READ, mmap

from matplotlib.pyplot import grid, legend, plot, show, tight_layout, xlabel, ylabel
from memory_profiler import memory_usage
from numpy import arange

def MemoryMap():
    with open(path) as file, mmap(file.fileno(), 0, access=ACCESS_READ) as file:
        print(md5(file).hexdigest())

def PlainRead():
    with open(path, 'rb') as file:
        print(md5(file.read()).hexdigest())

if __name__ == '__main__':
    path = ...
    y = memory_usage(MemoryMap, interval=0.01)
    plot(arange(len(y)) / 100, y, label='mmap')
    y = memory_usage(PlainRead, interval=0.01)
    plot(arange(len(y)) / 100, y, label='read')
    ylabel('Memory Usage (MiB)')
    xlabel('Time (s)')
    legend()
    grid()
    tight_layout()
    show()

path is the path to a 3.77GiB csv file.

Share:
226,209
user2344996
Author by

user2344996

Updated on July 10, 2022

Comments

  • user2344996
    user2344996 almost 2 years

    I have written some code in Python that checks for an MD5 hash in a file and makes sure the hash matches that of the original.

    Here is what I have developed:

    # Defines filename
    filename = "file.exe"
    
    # Gets MD5 from file 
    def getmd5(filename):
        return m.hexdigest()
    
    md5 = dict()
    
    for fname in filename:
        md5[fname] = getmd5(fname)
    
    # If statement for alerting the user whether the checksum passed or failed
    
    if md5 == '>md5 will go here<': 
        print("MD5 Checksum passed. You may now close this window")
        input ("press enter")
    else:
        print("MD5 Checksum failed. Incorrect MD5 in file 'filename'. Please download a new copy")
        input("press enter") 
    exit
    

    But whenever I run the code, I get the following error:

    Traceback (most recent call last):
    File "C:\Users\Username\md5check.py", line 13, in <module>
     md5[fname] = getmd5(fname)
    File "C:\Users\Username\md5check.py, line 9, in getmd5
      return m.hexdigest()
    NameError: global name 'm' is not defined
    

    Is there anything I am missing in my code?

  • user2344996
    user2344996 about 11 years
    Wow. I feel so embarrassed. I guess I put the wrong code for what I was doing, and added a lot of mistakes along with it. Thanks for your help. I am although more used to batch and lua. So Python is picky for me.
  • twobeers
    twobeers over 10 years
    You should also open the file in binary mode with open(file_name, 'rb'), otherwise you might get problems when the os does newline/carriage return conversions. See mail.python.org/pipermail/tutor/2004-January/027634.html and stackoverflow.com/questions/3431825/…
  • Jammy Lee
    Jammy Lee over 9 years
    If you are workong on a binary file , make sure you read it correctly with 'b' mode , finally I make it works as expected with this : hashlib.sha512(open(fn,'rb').read()).hexdigest()
  • Boris Verkhovskiy
    Boris Verkhovskiy about 3 years
    Does this read the entire file into memory? Then why not just do hashlib.md5(file.read()).hexdigest()
  • liurui39660
    liurui39660 about 3 years
    @Boris From the figure, I think the mmap method alternately reads and processes, but it seems memory is not released after use.
  • Ryan Loggerythm
    Ryan Loggerythm over 2 years
    thanks! this way is consistently 11% faster than the inline "hashlib.md5(open('filename.exe','rb').read()).hexdigest()" when testing on rather large files (about 4MB)
  • Boris Verkhovskiy
    Boris Verkhovskiy over 2 years
    @RyanLoggerythm that is surprising, are you sure you are profiling correctly? I would've expected that if you have enough RAM to read the entire file into it in one go, that would be faster. Also, in 2021 (hell, even in 2005), 4MB is not a "rather large" file. We load websites bigger than that just to check the weather.
  • Ryan Loggerythm
    Ryan Loggerythm over 2 years
    Hey Boris, yeah Im running on 32gigs of RAM. Granted, it was a couple of quick tests and 4MB was the largest file in my folder :). I just generated a 1GB file and PSS's one-line hash averaged 1.695 seconds across 5 runs, whereas your answer averaged 1.454 seconds, a 14% reduction in time!