Mercurial > dropbear
changeset 231:16f552859ee6
- register AES and Twofish even if just the 256 bit key variants are used
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 30 Aug 2005 17:46:34 +0000 |
parents | 1c03b27e1ceb |
children | cbf1165d9386 |
files | common-algo.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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