mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-31 11:17:29 +02:00
Don't run test_wolfSSL_DSA_SIG if HAVE_FIPS is defined.
This test calls `wolfSSL_DSA_do_sign_ex` and `wolfSSL_DSA_do_verify_ex`, both of which don't exist if `HAVE_FIPS` is defined.
This commit is contained in:
@ -39276,7 +39276,8 @@ static void test_wolfSSL_EVP_PKEY_set1_get1_DSA(void)
|
||||
|
||||
static void test_wolfSSL_DSA_SIG(void)
|
||||
{
|
||||
#if !defined (NO_DSA) && !defined(HAVE_SELFTEST) && defined(WOLFSSL_KEY_GEN)
|
||||
#if !defined(NO_DSA) && !defined(HAVE_SELFTEST) && defined(WOLFSSL_KEY_GEN) && \
|
||||
!defined(HAVE_FIPS)
|
||||
DSA *dsa = NULL;
|
||||
DSA *dsa2 = NULL;
|
||||
DSA_SIG *sig = NULL;
|
||||
|
Reference in New Issue
Block a user