forked from wolfSSL/wolfssl
api.c: skip test_wolfSSL_EVP_PBE_scrypt() when FIPS 140-3 (test uses impermissibly short HMAC key).
This commit is contained in:
@ -44662,7 +44662,8 @@ static void test_wolfSSL_EVP_PKEY_derive(void)
|
||||
|
||||
static void test_wolfSSL_EVP_PBE_scrypt(void)
|
||||
{
|
||||
#if defined(OPENSSL_EXTRA) && defined(HAVE_SCRYPT) && defined(HAVE_PBKDF2)
|
||||
#if defined(OPENSSL_EXTRA) && defined(HAVE_SCRYPT) && defined(HAVE_PBKDF2) && \
|
||||
(!defined(HAVE_FIPS_VERSION) || (HAVE_FIPS_VERSION < 5))
|
||||
#if !defined(NO_PWDBASED) && !defined(NO_SHA256)
|
||||
|
||||
int ret;
|
||||
|
Reference in New Issue
Block a user