emit "DHE" instead of "edh" for kX packet trace output
other parts of packet tracing emit the standard "DHE" label instead of "edh". This change brings the output of ssl_print_client_keyex() and ssl_print_server_keyex() into accordance with the standard term.
This commit is contained in:
parent
7988163c3b
commit
75cb3771b4
@ -812,7 +812,7 @@ static int ssl_get_keyex(const char **pname, SSL *ssl)
|
|||||||
}
|
}
|
||||||
if (alg_k & SSL_kEDH)
|
if (alg_k & SSL_kEDH)
|
||||||
{
|
{
|
||||||
*pname = "edh";
|
*pname = "DHE";
|
||||||
return SSL_kEDH;
|
return SSL_kEDH;
|
||||||
}
|
}
|
||||||
if (alg_k & SSL_kECDHE)
|
if (alg_k & SSL_kECDHE)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user