mirror of
https://github.com/openssl/openssl.git
synced 2025-01-27 04:14:10 +08:00
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@oracle.com> Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com> (Merged from https://github.com/openssl/openssl/pull/9995)
This commit is contained in:
parent
72a5412b48
commit
6834df12d1
@ -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;
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user