Merge pull request #7085 from dgarske/async_v5.6.6

Fix for invalid `dh_ffdhe_test` test case using Intel QuickAssist
This commit is contained in:
Daniel Pouzzner 2023-12-20 15:31:58 -05:00 committed by GitHub
commit 805c2d4487
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20075,7 +20075,8 @@ static wc_test_ret_t dh_ffdhe_test(WC_RNG *rng, int name)
ERROR_OUT(WC_TEST_RET_ENC_NC, done);
}
#if defined(WOLFSSL_HAVE_SP_DH) || defined(USE_FAST_MATH)
#if (defined(WOLFSSL_HAVE_SP_DH) || defined(USE_FAST_MATH)) && \
!defined(HAVE_INTEL_QA)
/* Make p even */
key->p.dp[0] &= (mp_digit)-2;
if (ret != 0)
@ -20107,7 +20108,7 @@ static wc_test_ret_t dh_ffdhe_test(WC_RNG *rng, int name)
/* Getting here means success - set ret to 0. */
ret = 0;
#endif
#endif /* (SP DH or Fast Math) and not Intel QuickAssist */
done: