mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 04:22:51 +08:00
Added usedforsecurity=False to hashlib md5 call to prevent errors on FIPS=1 systems
This commit is contained in:
parent
df129c7ba3
commit
f693ea6d89
@ -72,7 +72,7 @@ def _recursive_repr(item):
|
||||
|
||||
def get_hash(item):
|
||||
repr_ = _recursive_repr(item).encode('utf-8')
|
||||
return hashlib.md5(repr_).hexdigest()
|
||||
return hashlib.md5(repr_, usedforsecurity=False).hexdigest()
|
||||
|
||||
|
||||
def get_hash_int(item):
|
||||
|
Loading…
x
Reference in New Issue
Block a user