We have a client which is asking about OpenSSL FIPS (Federal Information Processing Standard) 140-2
compliant support validated cryptography use. How do I check whether OpenSSL has FIPS complains is providing FIPS validated cryptography or not?
OS: Redhat 5 Linux
It depends on how and when you want to check. It also depends on the application.
FIPS could be available but not used. So an application must enable the validated cryptography via
FIPS_mode_set
, and the call must succeed.If you want to check if the FIPS Capable Library, such as OpenSSL 1.0.1e, was configured to use the FIPS Object Module, then you can:
OPENSSL_FIPS
tells you the FIPS Capable Library was configured to use FIPS Object Module. So the FIPS validated cryptography is available.OPENSSL_FIPS
does not mean the application is using the FIPS validated cryptography, though. The application must callFIPS_mode_set
, and the function must return success.At runtime, you can print the string associated with the following (its taken from code I use specifically for this):
The code will produce a log entry similar to the following:
You can audit the module with a few tricks. For example, the following will test for some symbols that must be present if executable is truly FIPS.
In this case, I'm testing the OpenSSL FIPS Capable shared object. If the application links to
libcrypto.a
, then you can audit the program rather than the OpenSSL shared object.You also have the symbols from
fips_premain.c
:Now, this is really sneaky. You can check that the module includes the self tests. For example,
fips_drbg_selftest.h
will include the following bytes its self tests:And you can verify the developer ran
incore
ormacho_incore
on their executable to embed the FIPS fingerprint by dumping the 20 bytes of the symbolFIPS_signature
. If its 20 bytes of 0's (the default fromfips_premain.c
), then the fingerprint was not embedded andFIPS_mode_set
will fail. So its not possible to use FIPS validated cryptography in this case.Update: I uploaded a slide deck I have on the subject to the OpenSSL wiki. Its called Building Applications using OpenSSL Validated Cryptography: Notes from the Field for Developers and Auditors. You will want to review the material starting around Slide 18.
I built the slide deck for OWASP but there's was no interest in receiving it. I know Stack Overflow frowns upon links like the one on the OpenSSL wiki, but I don't know how to provide a 35+ slide deck here.