diff options
author | Matt Johnston <matt@ucc.asn.au> | 2020-06-10 23:42:42 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2020-06-10 23:42:42 +0800 |
commit | 6145289e0d6de9bad520c64316672c8f583cdb1e (patch) | |
tree | 3dae7a993347684a64aede719d00fdf84114180e /common-algo.c | |
parent | d14ebdbf0e6fcb031544402105324c6183b82443 (diff) |
Remove blowfish
Diffstat (limited to 'common-algo.c')
-rw-r--r-- | common-algo.c | 7 |
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} }; |