summaryrefslogtreecommitdiffhomepage
path: root/common-algo.c
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2005-08-30 17:46:34 +0000
committerMatt Johnston <matt@ucc.asn.au>2005-08-30 17:46:34 +0000
commitcebbc4e2b77cfedad2d01967952e2ca1f5c5d9a3 (patch)
tree7f61ce9086d80295b385c4f3e8fee080122ac5a2 /common-algo.c
parent77f4520207bf6be9dc89be406f8270c371dba22e (diff)
- register AES and Twofish even if just the 256 bit key variants are used
--HG-- extra : convert_revision : 6a05bc31e3e23ebb4c75cc18c69af7a4977e2313
Diffstat (limited to 'common-algo.c')
-rw-r--r--common-algo.c4
1 files 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