Merge f693ea6d89f7603370d37d7692cefe2fa298f92b into df129c7ba30aaa9ffffb81a48f53aa7253b0b4e6

This commit is contained in:
Zachary Berry 2023-05-04 10:04:35 -05:00 committed by GitHub
commit 04291c8255
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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):