1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-03 04:22:47 -05:00

Log the hash used for DH kex (now there's a choice).

[originally from svn r6605]
This commit is contained in:
Jacob Nevins
2006-03-12 15:39:19 +00:00
parent 8e368671cc
commit 2cf27e43bb
4 changed files with 5 additions and 3 deletions

3
ssh.c
View File

@ -5519,7 +5519,8 @@ static int do_ssh2_transport(Ssh ssh, void *vin, int inlen,
ssh->kex->groupname);
}
logevent("Doing Diffie-Hellman key exchange");
logeventf(ssh, "Doing Diffie-Hellman key exchange with hash %s",
ssh->kex->hash->text_name);
/*
* Now generate and send e for Diffie-Hellman.
*/