1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-06-30 19:12:48 -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

@ -215,7 +215,7 @@ static void sha256_final(void *handle, unsigned char *output)
}
const struct ssh_hash ssh_sha256 = {
sha256_init, sha256_bytes, sha256_final, 32
sha256_init, sha256_bytes, sha256_final, 32, "SHA-256"
};
#ifdef TEST