-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
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
fips check #275
Comments
Are you stating that on your system that What OS version are you running (on the client)? |
It's a RHEL 7.5 system, but running the mainline kernel from elrepo's kernel-ml. /proc/sys/crypto/fips_enabled seems to be a feature of the downstream RHEL kernel. |
it does exist on my Fedora 29 box (4.19.5-300.fc29.x86_64), but yeah, I think we can still add a check for it. |
/proc/sys/crypto/fips_enabled needn't exist. There should be a check between these two lines:
fips_file = open("/proc/sys/crypto/fips_enabled", "r")
fips_status = fips_file.read(1)
The text was updated successfully, but these errors were encountered: