From: Pauli Date: Mon, 3 Mar 2025 01:40:20 +0000 (+1100) Subject: run ECX KEM evp_test tests X-Git-Tag: openssl-3.5.0-alpha1~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c1cd6d89a32d08d171b359aba0219357acf0c5cb;p=thirdparty%2Fopenssl.git 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) --- 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;