1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-06 14:02: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

View File

@ -217,7 +217,7 @@ static void sha1_final(void *handle, unsigned char *output)
}
const struct ssh_hash ssh_sha1 = {
sha1_init, sha1_bytes, sha1_final, 20
sha1_init, sha1_bytes, sha1_final, 20, "SHA-1"
};
/* ----------------------------------------------------------------------