# HG changeset patch # User Matt Johnston # Date 1125423994 0 # Node ID 16f552859ee60617971577ea754dd7416a895cd4 # Parent 1c03b27e1cebea3159abce36980f755b75a3a3ed - register AES and Twofish even if just the 256 bit key variants are used diff -r 1c03b27e1ceb -r 16f552859ee6 common-algo.c --- a/common-algo.c Tue Aug 30 17:30:39 2005 +0000 +++ b/common-algo.c Tue Aug 30 17:46:34 2005 +0000 @@ -148,13 +148,13 @@ 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