Blowfish accepts variable key len in cipher layer
diff --git a/library/cipher_wrap.c b/library/cipher_wrap.c
index 34fc9e7..f4d39fa 100644
--- a/library/cipher_wrap.c
+++ b/library/cipher_wrap.c
@@ -1180,7 +1180,7 @@
128,
"BLOWFISH-ECB",
8,
- 0,
+ POLARSSL_CIPHER_VARIABLE_KEY_LEN,
8,
&blowfish_info
};
@@ -1192,7 +1192,7 @@
128,
"BLOWFISH-CBC",
8,
- 0,
+ POLARSSL_CIPHER_VARIABLE_KEY_LEN,
8,
&blowfish_info
};
@@ -1205,7 +1205,7 @@
128,
"BLOWFISH-CFB64",
8,
- 0,
+ POLARSSL_CIPHER_VARIABLE_KEY_LEN,
8,
&blowfish_info
};
@@ -1218,7 +1218,7 @@
128,
"BLOWFISH-CTR",
8,
- 0,
+ POLARSSL_CIPHER_VARIABLE_KEY_LEN,
8,
&blowfish_info
};