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?
