You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some FIPS builds are going beyond the standard and disabling SHA-1 (rather than just strongly discouraging its use). ItsDangerous accesses hashlib.sha1 on import in order to set a default, which immediately fails since sha1 isn't available in these builds. Make its access lazy so users have time to override the default. SHA-1 remains safe to use in HMAC, so the default will not be changing.
The text was updated successfully, but these errors were encountered:
Some FIPS builds are going beyond the standard and disabling SHA-1 (rather than just strongly discouraging its use). ItsDangerous accesses
hashlib.sha1
on import in order to set a default, which immediately fails sincesha1
isn't available in these builds. Make its access lazy so users have time to override the default. SHA-1 remains safe to use in HMAC, so the default will not be changing.The text was updated successfully, but these errors were encountered: