Index: native/src/ssl.c =================================================================== --- native/src/ssl.c (revision 1587850) +++ native/src/ssl.c (working copy) @@ -1154,11 +1154,18 @@ UNREFERENCED(file); } +TCN_IMPLEMENT_CALL(jint, SSL, fipsModeGet)(TCN_STDARGS) +{ + UNREFERENCED(o); + tcn_ThrowException(e, "FIPS was not available to tcnative at build time. You will need to re-build tcnative against an OpenSSL with FIPS."); + return 0; +} + TCN_IMPLEMENT_CALL(jint, SSL, fipsModeSet)(TCN_STDARGS, jint mode) { - UNREFERENCED_STDARGS; + UNREFERENCED(o); UNREFERENCED(mode); - + tcn_ThrowException(e, "FIPS was not available to tcnative at build time. You will need to re-build tcnative against an OpenSSL with FIPS."); return 0; }