summaryrefslogtreecommitdiffstats
path: root/ssl/t1_trce.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2018-02-27 10:12:02 +0000
committerMatt Caswell <matt@openssl.org>2018-03-05 11:39:20 +0000
commit0e1d6ecf37ea33ad963249cdb5efebeb04299033 (patch)
treedc5038f51583db3692c4aa4b085189ef21570fa8 /ssl/t1_trce.c
parent24c346086d9e1ad5aef1afac8145b32638f3d17c (diff)
Add X448/Ed448 support to libssl
Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Kurt Roeckx <kurt@roeckx.be> (Merged from https://github.com/openssl/openssl/pull/5470)
Diffstat (limited to 'ssl/t1_trce.c')
-rw-r--r--ssl/t1_trce.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ssl/t1_trce.c b/ssl/t1_trce.c
index fa975be174..ba5225849b 100644
--- a/ssl/t1_trce.c
+++ b/ssl/t1_trce.c
@@ -515,6 +515,7 @@ static const ssl_trace_tbl ssl_groups_tbl[] = {
{27, "brainpoolP384r1"},
{28, "brainpoolP512r1"},
{29, "ecdh_x25519"},
+ {30, "ecdh_x448"},
{256, "ffdhe2048"},
{257, "ffdhe3072"},
{258, "ffdhe4096"},
@@ -544,6 +545,7 @@ static const ssl_trace_tbl ssl_sigalg_tbl[] = {
{TLSEXT_SIGALG_ecdsa_secp521r1_sha512, "ecdsa_secp521r1_sha512"},
{TLSEXT_SIGALG_ecdsa_sha224, "ecdsa_sha224"},
{TLSEXT_SIGALG_ed25519, "ed25519"},
+ {TLSEXT_SIGALG_ed448, "ed448"},
{TLSEXT_SIGALG_ecdsa_sha1, "ecdsa_sha1"},
{TLSEXT_SIGALG_rsa_pss_rsae_sha256, "rsa_pss_rsae_sha256"},
{TLSEXT_SIGALG_rsa_pss_rsae_sha384, "rsa_pss_rsae_sha384"},