summaryrefslogtreecommitdiffstats
path: root/test/evp_libctx_test.c
diff options
context:
space:
mode:
authorPauli <pauli@openssl.org>2022-11-09 09:54:02 +1100
committerTomas Mraz <tomas@openssl.org>2022-11-10 12:25:04 +0100
commitccc860a77e542bee24f64e44f7bcea5706068866 (patch)
treec34692f3a3ae6e54c4600ef76dfa9e8e2a79868f /test/evp_libctx_test.c
parentc69cf38ec4b592a488f0c8d3042ecc345787ffc9 (diff)
Revert "Remove conditional FIPS dependence for 3DES"
This reverts commit 464c1011b02936850fc779739013dba52650840a. Reviewed-by: Shane Lontis <shane.lontis@oracle.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19631)
Diffstat (limited to 'test/evp_libctx_test.c')
-rw-r--r--test/evp_libctx_test.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/test/evp_libctx_test.c b/test/evp_libctx_test.c
index bb31328214..2448c35a14 100644
--- a/test/evp_libctx_test.c
+++ b/test/evp_libctx_test.c
@@ -745,14 +745,8 @@ int setup_tests(void)
#ifndef OPENSSL_NO_DH
ADD_TEST(kem_invalid_keytype);
#endif
- /*
- * The FIPS provider doesn't have 3DES, so we skip this test if
- * FIPS is available. It's not perfect because FIPS + default might be
- * loaded but it's good enough.
- */
#ifndef OPENSSL_NO_DES
- if (!OSSL_PROVIDER_available(libctx, "fips"))
- ADD_TEST(test_cipher_tdes_randkey);
+ ADD_TEST(test_cipher_tdes_randkey);
#endif
return 1;
}