Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/Performance/run-perf_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ def get_sha1_file( filename ):
sha1sum hash of the file
"""
hash_size = 256
sha1 = hashlib.sha1()
sha1 = hashlib.sha256()
with open( filename, 'rb' ) as f:
while True:
data = f.read( hash_size )
Expand Down