[git] GCRYPT - branch, master, updated. libgcrypt-1.6.0-164-gceaa97f

by Jussi Kivilinna cvs at cvs.gnupg.org
Tue Jan 20 21:17:53 CET 2015


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The GNU crypto library".

The branch, master has been updated
       via  ceaa97f0d849c07f3a15b642fc3a2b0a477b4a47 (commit)
      from  067d7d8752d4d8a98f8e0e5e9b1a5b13e1b7ff9c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit ceaa97f0d849c07f3a15b642fc3a2b0a477b4a47
Author: Jussi Kivilinna <jussi.kivilinna at iki.fi>
Date:   Tue Jan 20 18:54:13 2015 +0200

    rijndael: fix wrong ifdef for SSSE3 setkey
    
    * cipher/rijndael.c (do_setkey): Use USE_SSSE3 instead of USE_AESNI
    around SSSE3 setkey selection.
    --
    
    Reported-by: Richard H Lee <ricardohenrylee at gmail.com>
    Signed-off-by: Jussi Kivilinna <jussi.kivilinna at iki.fi>

diff --git a/cipher/rijndael.c b/cipher/rijndael.c
index 51c36c7..a481e6f 100644
--- a/cipher/rijndael.c
+++ b/cipher/rijndael.c
@@ -325,7 +325,7 @@ do_setkey (RIJNDAEL_context *ctx, const byte *key, const unsigned keylen)
   else if (ctx->use_aesni)
     _gcry_aes_aesni_do_setkey (ctx, key);
 #endif
-#ifdef USE_AESNI
+#ifdef USE_SSSE3
   else if (ctx->use_ssse3)
     _gcry_aes_ssse3_do_setkey (ctx, key);
 #endif

-----------------------------------------------------------------------

Summary of changes:
 cipher/rijndael.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
The GNU crypto library
http://git.gnupg.org


_______________________________________________
Gnupg-commits mailing list
Gnupg-commits at gnupg.org
http://lists.gnupg.org/mailman/listinfo/gnupg-commits




More information about the Gcrypt-devel mailing list