Skip to content

Commit 4b3a133

Browse files
authored
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.
1 parent 57cca5c commit 4b3a133

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

testssl.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15255,6 +15255,9 @@ parse_tls_serverhello() {
1525515255
"0019") echo -n "secp521r1" >> $TMPFILE ;;
1525615256
"001D") echo -n "X25519" >> $TMPFILE ;;
1525715257
"001E") echo -n "X448" >> $TMPFILE ;;
15258+
"001F") echo -n "brainpoolP256r1tls13" >> $TMPFILE ;;
15259+
"0020") echo -n "brainpoolP384r1tls13" >> $TMPFILE ;;
15260+
"0021") echo -n "brainpoolP512r1tls13" >> $TMPFILE ;;
1525815261
"0029") echo -n "curveSM2" >> $TMPFILE ;;
1525915262
"0100") echo -n "ffdhe2048" >> $TMPFILE ;;
1526015263
"0101") echo -n "ffdhe3072" >> $TMPFILE ;;

0 commit comments

Comments
 (0)