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:
Simon Tatham 2019-02-04 20:13:54 +00:00
Родитель 7a9eb02e47
Коммит 370248a98b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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", \