summaryrefslogtreecommitdiffstats
path: root/package/libs/polarssl/patches/310-fix_blowfish_key_len.patch
diff options
context:
space:
mode:
Diffstat (limited to 'package/libs/polarssl/patches/310-fix_blowfish_key_len.patch')
-rw-r--r--package/libs/polarssl/patches/310-fix_blowfish_key_len.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/package/libs/polarssl/patches/310-fix_blowfish_key_len.patch b/package/libs/polarssl/patches/310-fix_blowfish_key_len.patch
deleted file mode 100644
index 0b4878e192..0000000000
--- a/package/libs/polarssl/patches/310-fix_blowfish_key_len.patch
+++ /dev/null
@@ -1,29 +0,0 @@
---- a/library/cipher_wrap.c
-+++ b/library/cipher_wrap.c
-@@ -642,7 +642,7 @@ const cipher_base_t blowfish_info = {
- const cipher_info_t blowfish_cbc_info = {
- POLARSSL_CIPHER_BLOWFISH_CBC,
- POLARSSL_MODE_CBC,
-- 32,
-+ 128,
- "BF-CBC",
- 8,
- 8,
-@@ -653,7 +653,7 @@ const cipher_info_t blowfish_cbc_info =
- const cipher_info_t blowfish_cfb64_info = {
- POLARSSL_CIPHER_BLOWFISH_CFB64,
- POLARSSL_MODE_CFB,
-- 32,
-+ 128,
- "BF-CFB64",
- 8,
- 8,
-@@ -665,7 +665,7 @@ const cipher_info_t blowfish_cfb64_info
- const cipher_info_t blowfish_ctr_info = {
- POLARSSL_CIPHER_BLOWFISH_CTR,
- POLARSSL_MODE_CTR,
-- 32,
-+ 128,
- "BF-CTR",
- 8,
- 8,