Merge pull request #91 from cconlon/fipsRunAllCasts

JNI/JCE: call wc_RunAllCast_fips() for HAVE_FIPS_VERSION >= 6
pull/92/head
JacobBarthelmeh 2025-01-02 16:01:27 -07:00 committed by GitHub
commit 005e5f2bee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ JNIEXPORT jint JNICALL Java_com_wolfssl_wolfcrypt_Fips_wc_1runAllCast_1fips
#endif #endif
#if defined(HAVE_FIPS) && defined(HAVE_FIPS_VERSION) && \ #if defined(HAVE_FIPS) && defined(HAVE_FIPS_VERSION) && \
(HAVE_FIPS_VERSION >= 7) (HAVE_FIPS_VERSION >= 6)
failCount = wc_RunAllCast_fips(); failCount = wc_RunAllCast_fips();
if (failCount != 0) { if (failCount != 0) {