mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-06 22:12:47 -05:00
Add support for HMAC-SHA512.
I saw a post on comp.security.ssh just now where someone had encountered an SSH server that would _only_ speak that, which makes it worth bothering to implement. The totally obvious implementation works, and passes the test cases from RFC 6234.
This commit is contained in:
@ -35,6 +35,7 @@ BEGIN_ENUM_TYPE(macalg)
|
||||
ENUM_VALUE("hmac_sha1_96", &ssh_hmac_sha1_96)
|
||||
ENUM_VALUE("hmac_sha1_96_buggy", &ssh_hmac_sha1_96_buggy)
|
||||
ENUM_VALUE("hmac_sha256", &ssh_hmac_sha256)
|
||||
ENUM_VALUE("hmac_sha512", &ssh_hmac_sha512)
|
||||
ENUM_VALUE("poly1305", &ssh2_poly1305)
|
||||
ENUM_VALUE("aesgcm", &ssh2_aesgcm_mac)
|
||||
ENUM_VALUE("aesgcm", &ssh2_aesgcm_mac)
|
||||
|
Reference in New Issue
Block a user