search for: ac_cv_fip

Displaying 2 results from an estimated 2 matches for "ac_cv_fip".

Did you mean: ac_cv_fips
2004 Jun 04
2
Patch for FIPS 140 mode - take 3
Greetings. (Third try at sending this, the first two seemed to disappear without a trace. Perhaps use of MS Outlook was the problem, even though in plain text...? Or attachment too big (22Kb)? Would like to know...) The final source code and documentation package for a FIPS 140 validated mode of OpenSSL was recently submitted. Once the final certification is awarded by NIST, in a month or
2008 Apr 21
3
FIPS 140-2 OpenSSL(2007) patches
...}"; then @@ -2099,6 +2104,34 @@ ) fi + +# Check for OpenSSL FIPS mode +AC_ARG_WITH(fips, + [ --with-fips Enable OpenSSL FIPS mode ], + [ + if test "x$withval" != "xno" ; then + AC_CACHE_CHECK([for FIPS mode], ac_cv_fips, [ + AC_TRY_COMPILE( + [ #include <openssl/fips.h> ], + [ FIPS_mode_set(1); ], + [ ac_cv_fips="yes" ], +...