2022-01-08 12:12:15 +08:00
|
|
|
import hashlib
|
2022-01-09 07:24:29 +08:00
|
|
|
import pathlib
|
|
|
|
import sys
|
2022-01-08 12:12:15 +08:00
|
|
|
|
2024-09-03 22:21:03 +08:00
|
|
|
packages_dir = pathlib.Path(sys.argv[1]).resolve()
|
2022-01-08 12:12:15 +08:00
|
|
|
|
2024-05-16 23:39:26 +08:00
|
|
|
print('Showing hash values of files to be uploaded:')
|
2022-01-08 12:26:32 +08:00
|
|
|
|
2022-01-09 07:25:56 +08:00
|
|
|
for file_object in packages_dir.iterdir():
|
2022-01-09 15:18:25 +08:00
|
|
|
sha256 = hashlib.sha256()
|
2024-05-16 23:39:26 +08:00
|
|
|
md5 = hashlib.md5() # noqa: S324; only use for reference
|
2022-01-09 15:18:25 +08:00
|
|
|
blake2_256 = hashlib.blake2b(digest_size=256 // 8)
|
2022-01-09 19:53:19 +08:00
|
|
|
|
2022-01-09 07:24:29 +08:00
|
|
|
print(file_object)
|
2024-05-16 23:39:26 +08:00
|
|
|
print('')
|
2022-01-08 12:12:15 +08:00
|
|
|
|
2022-01-09 07:24:29 +08:00
|
|
|
content = file_object.read_bytes()
|
2022-01-09 19:53:19 +08:00
|
|
|
|
2022-01-08 12:12:15 +08:00
|
|
|
sha256.update(content)
|
|
|
|
md5.update(content)
|
|
|
|
blake2_256.update(content)
|
|
|
|
|
2024-05-16 23:39:26 +08:00
|
|
|
print(f'SHA256: {sha256.hexdigest()}')
|
|
|
|
print(f'MD5: {md5.hexdigest()}')
|
|
|
|
print(f'BLAKE2-256: {blake2_256.hexdigest()}')
|
|
|
|
print('')
|