Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@google.com>2016-05-31 23:15:04 +0300
committerAdam Langley <agl@google.com>2016-06-01 00:11:55 +0300
commit3995a38f3b8f8c944338e94bb63d04bc323b60b4 (patch)
treeddf29be743c022233b17179680c6b60abf4047c3 /tool/transport_common.cc
parent156edfe5361ad635c091265eb8035f2c310371d3 (diff)
Print out whether EMS was supported.
Change-Id: I3c5aa418fe767bce883fcdd0a926f922f9f8bbd3 Reviewed-on: https://boringssl-review.googlesource.com/8082 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'tool/transport_common.cc')
-rw-r--r--tool/transport_common.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/tool/transport_common.cc b/tool/transport_common.cc
index b0171791..be477875 100644
--- a/tool/transport_common.cc
+++ b/tool/transport_common.cc
@@ -181,6 +181,8 @@ void PrintConnectionInfo(const SSL *ssl) {
}
fprintf(stderr, " Secure renegotiation: %s\n",
SSL_get_secure_renegotiation_support(ssl) ? "yes" : "no");
+ fprintf(stderr, " Extended master secret: %s\n",
+ SSL_get_extms_support(ssl) ? "yes" : "no");
const uint8_t *next_proto;
unsigned next_proto_len;