summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2015-02-04 22:12:06 +0800
committerMatt Johnston <matt@ucc.asn.au>2015-02-04 22:12:06 +0800
commitb9ff5c90dc7d10f78d9aae74aa435c7543ac9f7c (patch)
tree808408cf9179de3864eab0cf9a84cecf80392946
parent4d053df456eeb9c72449917ba1a46a8e1e6b3f83 (diff)
downloaddropbear-b9ff5c90dc7d10f78d9aae74aa435c7543ac9f7c.tar.gz
twofish ctr modes
-rw-r--r--common-algo.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/common-algo.c b/common-algo.c
index 9abc330..6a20282 100644
--- a/common-algo.c
+++ b/common-algo.c
@@ -144,6 +144,12 @@ 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
#endif /* DROPBEAR_ENABLE_CTR_MODE */
#ifdef DROPBEAR_ENABLE_CBC_MODE