CodeZeroNull / hashTar

Python script that calculates hashes for every file inside a tarfile and creates a checksusm file
MIT License
0 stars 0 forks source link

md5 will fail with FIPS compliant Python #5

Closed CodeZeroNull closed 1 month ago

CodeZeroNull commented 1 month ago

md5 is not available in FIPS compliant Python (rare but exists) Further information: https://docs.python.org/3/library/hashlib.html

May should assert or something else that hash algorithm is there before trying to run.