[openssl] master update

beldmit at gmail.com beldmit at gmail.com
Sat Nov 23 13:28:44 UTC 2019


The branch master has been updated
       via  6834df12d1aaaefbb20154ee1e013514d3c57dda (commit)
      from  72a5412b4858cc7c5627a121f78685a2a4065521 (commit)


- Log -----------------------------------------------------------------
commit 6834df12d1aaaefbb20154ee1e013514d3c57dda
Author: Daniil Zotkin <zotkin at rutoken.ru>
Date:   Tue Sep 24 12:47:26 2019 +0300

    Process GOST ClientKeyExchange message in SSL_trace
    
    Use ssl_print_hex to print message in case of GOST key exchange algorithm.
    
    CLA: trivial
    
    Reviewed-by: Paul Dale <paul.dale at oracle.com>
    Reviewed-by: Dmitry Belyavskiy <beldmit at gmail.com>
    (Merged from https://github.com/openssl/openssl/pull/9995)

-----------------------------------------------------------------------

Summary of changes:
 ssl/t1_trce.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/ssl/t1_trce.c b/ssl/t1_trce.c
index c55c172b88..916fe85378 100644
--- a/ssl/t1_trce.c
+++ b/ssl/t1_trce.c
@@ -1110,6 +1110,10 @@ static int ssl_print_client_keyex(BIO *bio, int indent, const SSL *ssl,
         if (!ssl_print_hexbuf(bio, indent + 2, "ecdh_Yc", 1, &msg, &msglen))
             return 0;
         break;
+    case SSL_kGOST:
+        ssl_print_hex(bio, indent + 2, "GostKeyTransportBlob", msg, msglen);
+        msglen = 0;
+        break;
 
     }
 


More information about the openssl-commits mailing list