reimbursinator/back/backend/hasher.py

28 lines
681 B
Python
Raw Normal View History

import hashlib
hasher = hashlib.md5()
with open('simple_policy.py', 'rb') as afile:
2019-01-26 20:05:07 +00:00
buf = afile.read()
hasher.update(buf)
print("md5 of simple: " + hasher.hexdigest())
hasher = hashlib.md5()
with open('moderate_policy.py', 'rb') as afile:
2019-01-26 20:05:07 +00:00
buf = afile.read()
hasher.update(buf)
print("md5 of moderate: " + hasher.hexdigest())
hasher = hashlib.sha1()
with open('simple_policy.py', 'rb') as afile:
2019-01-26 20:05:07 +00:00
buf = afile.read()
hasher.update(buf)
print("sha1 of simple: " + hasher.hexdigest())
hasher = hashlib.sha1()
with open('moderate_policy.py', 'rb') as afile:
2019-01-26 20:05:07 +00:00
buf = afile.read()
hasher.update(buf)
print("sha1 of moderate: " + hasher.hexdigest())