提交 03327c8b 编写于 作者: D Dr. Stephen Henson

Print Ed25519 in s_client/s_server

Reviewed-by: NMatt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3585)
上级 881d2c5e
...@@ -230,6 +230,9 @@ static const char *get_sigtype(int nid) ...@@ -230,6 +230,9 @@ static const char *get_sigtype(int nid)
case EVP_PKEY_EC: case EVP_PKEY_EC:
return "ECDSA"; return "ECDSA";
case NID_ED25519:
return "Ed25519";
default: default:
return NULL; return NULL;
} }
...@@ -265,13 +268,13 @@ static int do_print_sigalgs(BIO *out, SSL *s, int shared) ...@@ -265,13 +268,13 @@ static int do_print_sigalgs(BIO *out, SSL *s, int shared)
BIO_puts(out, ":"); BIO_puts(out, ":");
sstr = get_sigtype(sign_nid); sstr = get_sigtype(sign_nid);
if (sstr) if (sstr)
BIO_printf(out, "%s+", sstr); BIO_printf(out, "%s", sstr);
else else
BIO_printf(out, "0x%02X+", (int)rsign); BIO_printf(out, "0x%02X", (int)rsign);
if (hash_nid != NID_undef) if (hash_nid != NID_undef)
BIO_printf(out, "%s", OBJ_nid2sn(hash_nid)); BIO_printf(out, "+%s", OBJ_nid2sn(hash_nid));
else else if (sstr == NULL)
BIO_printf(out, "0x%02X", (int)rhash); BIO_printf(out, "+0x%02X", (int)rhash);
} }
BIO_puts(out, "\n"); BIO_puts(out, "\n");
return 1; return 1;
...@@ -284,7 +287,7 @@ int ssl_print_sigalgs(BIO *out, SSL *s) ...@@ -284,7 +287,7 @@ int ssl_print_sigalgs(BIO *out, SSL *s)
ssl_print_client_cert_types(out, s); ssl_print_client_cert_types(out, s);
do_print_sigalgs(out, s, 0); do_print_sigalgs(out, s, 0);
do_print_sigalgs(out, s, 1); do_print_sigalgs(out, s, 1);
if (SSL_get_peer_signature_nid(s, &nid)) if (SSL_get_peer_signature_nid(s, &nid) && nid != NID_undef)
BIO_printf(out, "Peer signing digest: %s\n", OBJ_nid2sn(nid)); BIO_printf(out, "Peer signing digest: %s\n", OBJ_nid2sn(nid));
if (SSL_get_peer_signature_type_nid(s, &nid)) if (SSL_get_peer_signature_type_nid(s, &nid))
BIO_printf(out, "Peer signature type: %s\n", get_sigtype(nid)); BIO_printf(out, "Peer signature type: %s\n", get_sigtype(nid));
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册