summaryrefslogtreecommitdiffhomepage
path: root/common-algo.c
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
commitb6685bf806b1cf58f194d56261b29db0f235d33b (patch)
tree979146b52a5909638d160166d692a69b3c6e4fcd /common-algo.c
parent269d690e711ed6f1f445a276807215a63e84bcb4 (diff)
twofish ctr modes
Diffstat (limited to 'common-algo.c')
-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