From ac77e0697ad56503429f41a3bf90417827dd4d43 Mon Sep 17 00:00:00 2001 From: Pauli Date: Fri, 14 Feb 2025 13:47:05 +1100 Subject: [PATCH] evp_test: include signature generation and verification tests for SLH-DSA Reviewed-by: Tim Hudson Reviewed-by: Shane Lontis (Merged from https://github.com/openssl/openssl/pull/26750) --- test/recipes/30-test_evp.t | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/recipes/30-test_evp.t b/test/recipes/30-test_evp.t index 5ac7c4c4b3e..9a5c0acd9aa 100644 --- a/test/recipes/30-test_evp.t +++ b/test/recipes/30-test_evp.t @@ -24,6 +24,7 @@ my $no_fips = disabled('fips') || ($ENV{NO_FIPS} // 0); my $no_legacy = disabled('legacy') || ($ENV{NO_LEGACY} // 0); my $no_des = disabled("des"); my $no_dh = disabled("dh"); +my $no_slh_dsa = disabled("slh-dsa"); my $no_dsa = disabled("dsa"); my $no_ec = disabled("ec"); my $no_ecx = disabled("ecx"); @@ -76,6 +77,10 @@ push @files, qw( evpkdf_x942_des.txt evpmac_cmac_des.txt ) unless $no_des; +push @files, qw( + evppkey_slh_dsa_siggen.txt + evppkey_slh_dsa_sigver.txt + ) unless $no_slh_dsa; push @files, qw( evppkey_dsa.txt evppkey_dsa_sigalg.txt -- 2.47.2