From cebbc4e2b77cfedad2d01967952e2ca1f5c5d9a3 Mon Sep 17 00:00:00 2001 From: Matt Johnston Date: Tue, 30 Aug 2005 17:46:34 +0000 Subject: [PATCH] - register AES and Twofish even if just the 256 bit key variants are used --HG-- extra : convert_revision : 6a05bc31e3e23ebb4c75cc18c69af7a4977e2313 --- common-algo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common-algo.c b/common-algo.c index cc91c88..45adecb 100644 --- a/common-algo.c +++ b/common-algo.c @@ -148,13 +148,13 @@ algo_type sshkex[] = { void crypto_init() { const struct ltc_cipher_descriptor *regciphers[] = { -#ifdef DROPBEAR_AES128_CBC +#ifdef DROPBEAR_AES_CBC &aes_desc, #endif #ifdef DROPBEAR_BLOWFISH_CBC &blowfish_desc, #endif -#ifdef DROPBEAR_TWOFISH128_CBC +#ifdef DROPBEAR_TWOFISH_CBC &twofish_desc, #endif #ifdef DROPBEAR_3DES_CBC