Skip to content
Closed
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
3 changes: 3 additions & 0 deletions print-hash.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
print('Showing hash values of files to be uploaded:')

for file_object in packages_dir.iterdir():
if file_object.is_dir():
continue

sha256 = hashlib.sha256()
md5 = hashlib.md5() # noqa: S324; only use for reference
blake2_256 = hashlib.blake2b(digest_size=256 // 8)
Expand Down
Loading