diff options
Diffstat (limited to 'src/dh.c')
-rw-r--r-- | src/dh.c | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -473,9 +473,11 @@ int dh_build_k(ssh_session session) { #endif #ifdef DEBUG_CRYPTO - ssh_print_hexa("Session server cookie", session->server_kex.cookie, 16); - ssh_print_hexa("Session client cookie", session->client_kex.cookie, 16); - ssh_print_bignum("Shared secret key", session->next_crypto->k); + ssh_print_hexa("Session server cookie", + session->next_crypto->server_kex.cookie, 16); + ssh_print_hexa("Session client cookie", + session->next_crypto->client_kex.cookie, 16); + ssh_print_bignum("Shared secret key", session->next_crypto->k); #endif #ifdef HAVE_LIBCRYPTO |