OSDN Git Service

crypto: sha512 - Fix byte counter overflow in SHA-512
authorKent Yoder <key@linux.vnet.ibm.com>
Thu, 5 Apr 2012 12:34:20 +0000 (20:34 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 27 Apr 2012 16:51:05 +0000 (09:51 -0700)
commitee6c90f9e96bc7d334f626b6076817d57cf861a1
treed7121eecb279cdec47a88a4ba137ae48bcc9dab2
parent26cf838583142c2f5c79f2edbad3331011438137
crypto: sha512 - Fix byte counter overflow in SHA-512

commit 25c3d30c918207556ae1d6e663150ebdf902186b upstream.

The current code only increments the upper 64 bits of the SHA-512 byte
counter when the number of bytes hashed happens to hit 2^64 exactly.

This patch increments the upper 64 bits whenever the lower 64 bits
overflows.

Signed-off-by: Kent Yoder <key@linux.vnet.ibm.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
crypto/sha512_generic.c