-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Computer systems can be configured to operate in compliance with the U.S. Federal Information Processing Standards. Such configuration restricts usage of MD5 due to its cryptographic insecurity. Trying to use `hashlib.md5()` on a FIPS system raises an exception: ``` ValueError: [digital envelope routines: EVP_DigestInit_ex] disabled for FIPS ``` In Python 3.9 and newer, using MD5 for non-cryptographic purposes is allowed by passing `usedforsecurity=False`.
- Loading branch information
1 parent
5eaf16d
commit 9794d73
Showing
1 changed file
with
11 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters