mirror of
https://github.com/drwetter/testssl.sh.git
synced 2026-04-21 10:23:31 +02:00
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.
This commit is contained in:
@@ -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 ;;
|
||||
|
||||
Reference in New Issue
Block a user