mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
Give the AES CBC protocol ids back their correct names.
In commit dfdb73e10
I accidentally renamed them from "aes128-cbc" to
"aes128" (and ditto for the other two key lengths), probably because
of the confusing names of the C-level identifiers for those vtables.
Now restored to the versions actually described in RFC 4253.
This commit is contained in:
parent
7a9eb02e47
commit
370248a98b
2
sshaes.c
2
sshaes.c
@ -130,7 +130,7 @@ struct aes_extra {
|
||||
NULL, &extra_##cid }; \
|
||||
|
||||
#define VTABLES(keylen) \
|
||||
VTABLES_INNER(aes ## keylen ## _cbc, "aes" #keylen, \
|
||||
VTABLES_INNER(aes ## keylen ## _cbc, "aes" #keylen "-cbc", \
|
||||
keylen, "AES-" #keylen " CBC", _encrypt, _decrypt, \
|
||||
setiv_cbc, SSH_CIPHER_IS_CBC) \
|
||||
VTABLES_INNER(aes ## keylen ## _sdctr, "aes" #keylen "-ctr", \
|
||||
|
Loading…
Reference in New Issue
Block a user