From 370248a98bc7d072dc9935fff95359518ed9ce82 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Mon, 4 Feb 2019 20:13:54 +0000 Subject: [PATCH] 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. --- sshaes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sshaes.c b/sshaes.c index 2fe7d411..d30ca916 100644 --- a/sshaes.c +++ b/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", \