From c1cd6d89a32d08d171b359aba0219357acf0c5cb Mon Sep 17 00:00:00 2001 From: Pauli Date: Mon, 3 Mar 2025 12:40:20 +1100 Subject: [PATCH] run ECX KEM evp_test tests The FIPS providers that support ECX (3.0.x & maybe 3.1.x) do not support ECX KEM so there is little point to testing these algorithms under FIPS. Consequently, they are being tested only with the default provider. Reviewed-by: Tim Hudson Reviewed-by: Viktor Dukhovni (Merged from https://github.com/openssl/openssl/pull/26946) --- test/recipes/30-test_evp.t | 1 + 1 file changed, 1 insertion(+) diff --git a/test/recipes/30-test_evp.t b/test/recipes/30-test_evp.t index d87bb223732..26074ae3c2d 100644 --- a/test/recipes/30-test_evp.t +++ b/test/recipes/30-test_evp.t @@ -165,6 +165,7 @@ my @defltfiles = qw( ); push @defltfiles, qw(evppkey_brainpool.txt) unless $no_ec; push @defltfiles, qw(evppkey_ecdsa_rfc6979.txt) unless $no_ec; +push @defltfiles, qw(evppkey_ecx_kem.txt) unless $no_ecx; push @defltfiles, qw(evppkey_dsa_rfc6979.txt) unless $no_dsa; push @defltfiles, qw(evppkey_sm2.txt) unless $no_sm2; push @defltfiles, qw(evpciph_aes_gcm_siv.txt) unless $no_siv; -- 2.47.2