-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#!/usr/bin/env python3 | ||
|
||
|
||
|
||
import hashlib | ||
|
||
|
||
|
||
def get_hash(file_path=None, data=None, algo="sha1"): | ||
# https://stackoverflow.com/questions/22058048/hashing-a-file-in-python | ||
hash_func = getattr(hashlib, algo) | ||
if data: | ||
return hash_func(data).digest() | ||
assert file_path | ||
# BUF_SIZE is totally arbitrary, change for your app! | ||
BUF_SIZE = 65536 # lets read stuff in 64kb chunks! | ||
hash = hash_func() | ||
with open(file_path, 'rb') as f: | ||
while data := f.read(BUF_SIZE): | ||
#md5.update(data) | ||
hash.update(data) | ||
return hash.digest() | ||
|
||
|
||
|
||
if __name__ == "__main__": | ||
import sys | ||
file_path = sys.argv[1] | ||
hash = get_hash(file_path).hex() | ||
print(f"{hash} {file_path}") |