diff options
author | Matt Caswell <matt@openssl.org> | 2018-02-27 11:12:02 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2018-03-05 12:39:20 +0100 |
commit | 0e1d6ecf37ea33ad963249cdb5efebeb04299033 (patch) | |
tree | dc5038f51583db3692c4aa4b085189ef21570fa8 /ssl/t1_trce.c | |
parent | Fixed a typo in a man page (diff) | |
download | openssl-0e1d6ecf37ea33ad963249cdb5efebeb04299033.tar.xz openssl-0e1d6ecf37ea33ad963249cdb5efebeb04299033.zip |
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.c | 2 |
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"}, |