changeset 1012:ffd2359564b0

twofish ctr modes
author Matt Johnston <matt@ucc.asn.au>
date Wed, 04 Feb 2015 22:12:06 +0800
parents c635aeeaf25c
children a1e79ffa5862
files common-algo.c
diffstat 1 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/common-algo.c	Thu Jan 29 21:42:01 2015 +0800
+++ b/common-algo.c	Wed Feb 04 22:12:06 2015 +0800
@@ -144,6 +144,12 @@
 #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