summaryrefslogtreecommitdiffhomepage
path: root/common-algo.c
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2020-06-10 23:42:42 +0800
committerMatt Johnston <matt@ucc.asn.au>2020-06-10 23:42:42 +0800
commit6145289e0d6de9bad520c64316672c8f583cdb1e (patch)
tree3dae7a993347684a64aede719d00fdf84114180e /common-algo.c
parentd14ebdbf0e6fcb031544402105324c6183b82443 (diff)
Remove blowfish
Diffstat (limited to 'common-algo.c')
-rw-r--r--common-algo.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/common-algo.c b/common-algo.c
index a710171..8b39892 100644
--- a/common-algo.c
+++ b/common-algo.c
@@ -64,10 +64,6 @@ static const struct dropbear_cipher dropbear_aes256 =
static const struct dropbear_cipher dropbear_aes128 =
{&aes_desc, 16, 16};
#endif
-#if DROPBEAR_BLOWFISH
-static const struct dropbear_cipher dropbear_blowfish =
- {&blowfish_desc, 16, 8};
-#endif
#if DROPBEAR_TWOFISH256
static const struct dropbear_cipher dropbear_twofish256 =
{&twofish_desc, 32, 16};
@@ -197,9 +193,6 @@ algo_type sshciphers[] = {
#endif /* DROPBEAR_3DES */
#if DROPBEAR_ENABLE_CBC_MODE
-#if DROPBEAR_BLOWFISH
- {"blowfish-cbc", 0, &dropbear_blowfish, 1, &dropbear_mode_cbc},
-#endif
#endif /* DROPBEAR_ENABLE_CBC_MODE */
{NULL, 0, NULL, 0, NULL}
};