Alter md5 call to make utils.py module FIPS compatible #8974
Labels
good first issue
Clearly described and easy to accomplish. Good for beginners to the project.
help wanted
The utils.py module uses
hashlib.md5
. This fails on a FIPS system, where using the md5 function raises a ValueError.It does not appear that the md5 function is used for security purposes in
utils.py
. I think the fix would be simply setusedforsecurity=False
to allow the md5 function to work on a FIPS system.So the new function would be:
The text was updated successfully, but these errors were encountered: