Added usedforsecurity=False to hashlib md5 call to prevent errors on FIPS=1 systems

This commit is contained in:
Zachary Berry 2023-05-04 10:01:07 -05:00
parent df129c7ba3
commit f693ea6d89

View File

@ -72,7 +72,7 @@ def _recursive_repr(item):
def get_hash(item): def get_hash(item):
repr_ = _recursive_repr(item).encode('utf-8') repr_ = _recursive_repr(item).encode('utf-8')
return hashlib.md5(repr_).hexdigest() return hashlib.md5(repr_, usedforsecurity=False).hexdigest()
def get_hash_int(item): def get_hash_int(item):