diff options
author | Matt Johnston <matt@ucc.asn.au> | 2008-09-29 14:30:47 +0000 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2008-09-29 14:30:47 +0000 |
commit | c2bd79131ad036910c1d3d0a3a5a9527e12831c0 (patch) | |
tree | 53231b263ce042e56f0baf69725ebac3e13a7b4e /common-algo.c | |
parent | 511f6555c98634d8d962f65e8d5ff3ba690e0bf9 (diff) |
- Get rid of blowfish and twofish CTR since they weren't likely
to be that useful
--HG--
extra : convert_revision : e16bd265bb6e8093b3488993dffc86662a2a7a62
Diffstat (limited to 'common-algo.c')
-rw-r--r-- | common-algo.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/common-algo.c b/common-algo.c index 280f7c1..8863367 100644 --- a/common-algo.c +++ b/common-algo.c @@ -128,15 +128,6 @@ algo_type sshciphers[] = { #ifdef DROPBEAR_AES256 {"aes256-ctr", 0, &dropbear_aes256, 1, &dropbear_mode_ctr}, #endif -#ifdef DROPBEAR_TWOFISH256 - {"twofish256-ctr", 0, &dropbear_twofish256, 1, &dropbear_mode_ctr}, -#endif -#ifdef DROPBEAR_TWOFISH128 - {"twofish128-ctr", 0, &dropbear_twofish128, 1, &dropbear_mode_ctr}, -#endif -#ifdef DROPBEAR_BLOWFISH - {"blowfish-ctr", 0, &dropbear_blowfish, 1, &dropbear_mode_ctr}, -#endif #endif /* DROPBEAR_ENABLE_CTR_MODE */ /* CBC modes are always enabled */ |