Ignore MLKEMs for TLS 1.3

This commit is contained in:
Dirk Wetter
2025-10-08 23:15:49 +02:00
parent f081db83e1
commit 6af5377507

View File

@ -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: # 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; $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 # Same with ECDH bit length
$cat_csv =~ s/ECDH 253/ECDH 256/g; $cat_csv =~ s/ECDH 253/ECDH 256/g;
$baseline_csv =~ s/ECDH 253/ECDH 256/g; $baseline_csv =~ s/ECDH 253/ECDH 256/g;
# this could contain the openssl path # this could contain the openssl path
$cat_csv =~ s/"engine_problem.*\n//g; $cat_csv =~ s/"engine_problem.*\n//g;
$baseline_csv =~ s/"engine_problem.*\n//g; $baseline_csv =~ s/"engine_problem.*\n//g;