Skip to content

Instantly share code, notes, and snippets.

@PiotrZakrzewski
Created October 30, 2012 15:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PiotrZakrzewski/3980715 to your computer and use it in GitHub Desktop.
Save PiotrZakrzewski/3980715 to your computer and use it in GitHub Desktop.
#!/usr/bin/python3
"""
Get a md5 hash of a file (content wise, binary)
"""
import hashlib
def getHash(path):
with open(path,"rb") as infile:
content = infile.read()
hash = hashlib.md5(content).digest()
return hash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment