aboutsummaryrefslogtreecommitdiffstats
path: root/package/libs/polarssl/patches/310-fix_blowfish_key_len.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2013-07-24 16:59:43 +0000
committerFelix Fietkau <nbd@openwrt.org>2013-07-24 16:59:43 +0000
commit6e8b02a6c3aadbed0eaf5c87b73c8e0ccd7bf76c (patch)
treedd92982b6bcd7a80a52d80dee31afe26317ab9c1 /package/libs/polarssl/patches/310-fix_blowfish_key_len.patch
parentce090e5a99741a2aa2156d084fbf95e1176fbd54 (diff)
downloadupstream-6e8b02a6c3aadbed0eaf5c87b73c8e0ccd7bf76c.tar.gz
upstream-6e8b02a6c3aadbed0eaf5c87b73c8e0ccd7bf76c.tar.bz2
upstream-6e8b02a6c3aadbed0eaf5c87b73c8e0ccd7bf76c.zip
polarssl: update to version 1.2.8
Signed-off-by: Felix Fietkau <nbd@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@37527 3c298f89-4303-0410-b956-a3cf2f4a3e73
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,