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
the updates that were made here: SHA: 6b9845b
cause an error on RHEL6 boxes with FIPS-compliant mode active. In this mode md5 is not allowed, and forces androwarn to segfault.
The most direct fix is the following:
in apk.py line 47:
md5 = hashlib.md5()
update to
md5 = hashlib.md5(usedforsecurity=False)
this has been noted in the commit as well.
The text was updated successfully, but these errors were encountered:
MD5 and SHA256 apk hashes added
6b9845b
Hello @jhumphries,
Can you test the latest version with a pip install androwarn and tell me if the FIPS bug is still valid ?
pip install androwarn
Best regards.
Sorry, something went wrong.
No branches or pull requests
the updates that were made here:
SHA: 6b9845b
cause an error on RHEL6 boxes with FIPS-compliant mode active. In this mode md5 is not allowed, and forces androwarn to segfault.
The most direct fix is the following:
in apk.py line 47:
md5 = hashlib.md5()
update to
md5 = hashlib.md5(usedforsecurity=False)
this has been noted in the commit as well.
The text was updated successfully, but these errors were encountered: