diff common-algo.c @ 1713:c2c0f43ff827

Remove blowfish
author Matt Johnston <matt@ucc.asn.au>
date Wed, 10 Jun 2020 23:42:42 +0800
parents 41bf8f216644
children 7c0fcd19e492
line wrap: on
line diff
--- a/common-algo.c	Wed Jun 10 23:26:05 2020 +0800
+++ b/common-algo.c	Wed Jun 10 23:42:42 2020 +0800
@@ -64,10 +64,6 @@
 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 @@
 #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}
 };