From 6af53775075701b9c747d9e2da4050cb15d62367 Mon Sep 17 00:00:00 2001 From: Dirk Wetter Date: Wed, 8 Oct 2025 23:15:49 +0200 Subject: [PATCH] Ignore MLKEMs for TLS 1.3 --- t/61_diff_testsslsh.t | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/t/61_diff_testsslsh.t b/t/61_diff_testsslsh.t index 1cac5e3..6aa907b 100755 --- a/t/61_diff_testsslsh.t +++ b/t/61_diff_testsslsh.t @@ -59,11 +59,16 @@ $cat_csv =~ s/x1303 AEAD-CHACHA20-POLY1305-SHA256/x1303 TLS_CHACHA20_PO # now the other lines, where we don't need to insert the additional space: $cat_csv =~ s/AEAD-CHACHA20-POLY1305-SHA256/TLS_CHACHA20_POLY1305_SHA256/g; +# For Ubuntu 24.04 we don't have MLKEMs yet +$cat_csv =~ s/ECDH\/MLKEM AESGCM/ECDH 253 AESGCM/g; +$baseline_csv =~ s/ECDH\/MLKEM AESGCM/ECDH 253 AESGCM/g; +$cat_csv =~ s/ECDH\/MLKEM ChaCha20/ECDH 253 AESGCM/g; +$baseline_csv =~ s/ECDH\/MLKEM ChaCha20/ECDH 253 AESGCM/g; + # Same with ECDH bit length $cat_csv =~ s/ECDH 253/ECDH 256/g; $baseline_csv =~ s/ECDH 253/ECDH 256/g; - # this could contain the openssl path $cat_csv =~ s/"engine_problem.*\n//g; $baseline_csv =~ s/"engine_problem.*\n//g;