We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a quite specific environment and noticed one issue with it.
My environment is in OpenSSL FIPS 140-2 mode and using md5 is not supported.
Following line raises an error ValueError: [digital envelope routines: FIPS_DIGESTINIT] disabled for fips.
ValueError: [digital envelope routines: FIPS_DIGESTINIT] disabled for fips
celery-once/celery_once/backends/file.py
Line 20 in 4f68b6b
I'm suggesting to change that to hashlib.sha1() which is supported in even if FIPS mode is enabled in cryptographic library.
hashlib.sha1()
If proposed change is allowed I'm more than happy to do the pull request.
With best regards, Wonky
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a quite specific environment and noticed one issue with it.
My environment is in OpenSSL FIPS 140-2 mode and using md5 is not supported.
Following line raises an error
ValueError: [digital envelope routines: FIPS_DIGESTINIT] disabled for fips
.celery-once/celery_once/backends/file.py
Line 20 in 4f68b6b
I'm suggesting to change that to
hashlib.sha1()
which is supported in even if FIPS mode is enabled in cryptographic library.If proposed change is allowed I'm more than happy to do the pull request.
With best regards,
Wonky
The text was updated successfully, but these errors were encountered: