aboutsummaryrefslogtreecommitdiffstats
path: root/apps/s_client.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2012-03-06 14:28:21 +0000
committerDr. Stephen Henson <steve@openssl.org>2012-03-06 14:28:21 +0000
commite7f8ff43826494896548d054ee8dbb96367f00af (patch)
treef2737a5b558ec42d404ae2d5a2676de7593bd965 /apps/s_client.c
parent62b6948a2710c2a095b87b0b9c4b89f7b23246a9 (diff)
downloadopenssl-e7f8ff43826494896548d054ee8dbb96367f00af.tar.gz
New ctrls to retrieve supported signature algorithms and curves and
extensions to s_client and s_server to print out retrieved valued. Extend CERT structure to cache supported signature algorithm data.
Diffstat (limited to 'apps/s_client.c')
-rw-r--r--apps/s_client.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/s_client.c b/apps/s_client.c
index 7f389712dc..ce199be81b 100644
--- a/apps/s_client.c
+++ b/apps/s_client.c
@@ -2018,6 +2018,8 @@ static void print_stuff(BIO *bio, SSL *s, int full)
BIO_write(bio,"\n",1);
}
+ ssl_print_sigalgs(bio, s);
+
BIO_printf(bio,"---\nSSL handshake has read %ld bytes and written %ld bytes\n",
BIO_number_read(SSL_get_rbio(s)),
BIO_number_written(SSL_get_wbio(s)));