summaryrefslogtreecommitdiff
path: root/security/gnupg/patches
diff options
context:
space:
mode:
authorwiz <wiz>2013-07-25 11:50:45 +0000
committerwiz <wiz>2013-07-25 11:50:45 +0000
commit351e4a0e471c460c8180a340a5a540b9f45809ed (patch)
tree40dc379f26becf20a4132db64a969b97ecc070d7 /security/gnupg/patches
parent284a0f933459e2aaeedc55b0d1bb2844385bb0a9 (diff)
downloadpkgsrc-351e4a0e471c460c8180a340a5a540b9f45809ed.tar.gz
Update to 1.4.14:
Noteworthy changes in version 1.4.14 (2013-07-25) ------------------------------------------------- * Mitigate the Yarom/Falkner flush+reload side-channel attack on RSA secret keys. See <http://eprint.iacr.org/2013/448>. * Fixed IDEA for big-endian CPUs * Improved the diagnostics for failed keyserver lockups. * Minor bug and portability fixes.
Diffstat (limited to 'security/gnupg/patches')
-rw-r--r--security/gnupg/patches/patch-cipher_idea.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/security/gnupg/patches/patch-cipher_idea.c b/security/gnupg/patches/patch-cipher_idea.c
deleted file mode 100644
index 9eeab67c9fd..00000000000
--- a/security/gnupg/patches/patch-cipher_idea.c
+++ /dev/null
@@ -1,25 +0,0 @@
-$NetBSD: patch-cipher_idea.c,v 1.1 2013/01/07 21:53:53 wiz Exp $
-
-Fix for big-endian, from
-http://bugs.g10code.com/gnupg/issue1461
-
---- cipher/idea.c.orig 2012-12-20 17:22:26.000000000 +0000
-+++ cipher/idea.c
-@@ -201,7 +201,7 @@ cipher( byte *outbuf, const byte *inbuf,
- x2 = *in++;
- x3 = *in++;
- x4 = *in;
-- #ifndef WORDS_BIGENDIAN
-+ #ifndef BIG_ENDIAN_HOST
- x1 = (x1>>8) | (x1<<8);
- x2 = (x2>>8) | (x2<<8);
- x3 = (x3>>8) | (x3<<8);
-@@ -234,7 +234,7 @@ cipher( byte *outbuf, const byte *inbuf,
- MUL(x4, *key);
-
- out = (u16*)outbuf;
-- #ifndef WORDS_BIGENDIAN
-+ #ifndef BIG_ENDIAN_HOST
- *out++ = (x1>>8) | (x1<<8);
- *out++ = (x3>>8) | (x3<<8);
- *out++ = (x2>>8) | (x2<<8);