From 45cf9e9de9cba52a6f049eea3058449fe696db5a Mon Sep 17 00:00:00 2001 From: David Cooper Date: Mon, 13 Apr 2026 13:01:06 -0700 Subject: [PATCH] Add missing TLS 1.3 Brainpool groups This commit adds recognition of the TLS 1.3 Brainpool groups when parsing the supported_groups extension in the server's extensions. --- testssl.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/testssl.sh b/testssl.sh index 9b86561..83bbd97 100755 --- a/testssl.sh +++ b/testssl.sh @@ -14939,6 +14939,9 @@ parse_tls_serverhello() { "0019") echo -n "secp521r1" >> $TMPFILE ;; "001D") echo -n "X25519" >> $TMPFILE ;; "001E") echo -n "X448" >> $TMPFILE ;; + "001F") echo -n "brainpoolP256r1tls13" >> $TMPFILE ;; + "0020") echo -n "brainpoolP384r1tls13" >> $TMPFILE ;; + "0021") echo -n "brainpoolP512r1tls13" >> $TMPFILE ;; "0100") echo -n "ffdhe2048" >> $TMPFILE ;; "0101") echo -n "ffdhe3072" >> $TMPFILE ;; "0102") echo -n "ffdhe4096" >> $TMPFILE ;;