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
1 changed files with 4 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue