diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-01-30 20:07:04 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-01-30 20:07:04 +0000 |
commit | b848a1931381ac41dc9b112723dd9a97cff34d57 (patch) | |
tree | 0d6d2e71e65deceb2010bce8baebe4caca656eb4 /package/libs/polarssl/patches/310-fix_blowfish_key_len.patch | |
parent | 07903f3b93f545ae4970b8d24d8992e5c7eeed72 (diff) | |
download | upstream-b848a1931381ac41dc9b112723dd9a97cff34d57.tar.gz upstream-b848a1931381ac41dc9b112723dd9a97cff34d57.tar.bz2 upstream-b848a1931381ac41dc9b112723dd9a97cff34d57.zip |
polarssl: add from /packages, update to 1.2.4, fix openssl compatibility
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35411 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.patch | 29 |
1 files changed, 29 insertions, 0 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 new file mode 100644 index 0000000000..0b4878e192 --- /dev/null +++ b/package/libs/polarssl/patches/310-fix_blowfish_key_len.patch @@ -0,0 +1,29 @@ +--- 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, |