@@ -58,7 +58,7 @@ def joinDicts(dict1, dict2):
def hashfile(path, blocksize = 65536):
afile = open(path, 'rb')
- hasher = hashlib.md5()
+ hasher = hashlib.sha256()
buf = afile.read(blocksize)
while len(buf) > 0:
hasher.update(buf)