From 6f5db14de9404dde96db54b964854883d4d314ec Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Sat, 13 Feb 2021 22:36:51 +0100 Subject: [PATCH] OpenSSL: Log the TLS version and the the cipher used --- openssl.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/openssl.c b/openssl.c index 2ab67c96..c4783fb0 100644 --- a/openssl.c +++ b/openssl.c @@ -869,7 +869,9 @@ extern int create_client_ssl_connection(struct client_state *csp) goto exit; } - log_error(LOG_LEVEL_CONNECT, "Client successfully connected over TLS/SSL"); + log_error(LOG_LEVEL_CONNECT, "Client successfully connected over %s (%s).", + SSL_get_version(ssl), SSL_get_cipher_name(ssl)); + csp->ssl_with_client_is_opened = 1; ret = 0; @@ -1179,7 +1181,8 @@ extern int create_server_ssl_connection(struct client_state *csp) } } - log_error(LOG_LEVEL_CONNECT, "Server successfully connected over TLS/SSL"); + log_error(LOG_LEVEL_CONNECT, "Server successfully connected over %s (%s).", + SSL_get_version(ssl), SSL_get_cipher_name(ssl)); /* * Server certificate chain is valid, so we can clean -- 2.39.2