]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
crypto: sha - Handle unaligned input data in generic sha256 and sha512.
authorDavid S. Miller <davem@davemloft.net>
Thu, 2 Oct 2014 06:52:37 +0000 (14:52 +0800)
committerHerbert Xu <herbert@gondor.apana.org.au>
Thu, 2 Oct 2014 06:52:37 +0000 (14:52 +0800)
Like SHA1, use get_unaligned_be*() on the raw input data.

Reported-by: Bob Picco <bob.picco@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/sha256_generic.c
crypto/sha512_generic.c

index 5433667795249ca298059a136998b9c2624f2c97..0bb5583446993aae173c0b7c015b0db9214f723f 100644 (file)
@@ -24,6 +24,7 @@
 #include <linux/types.h>
 #include <crypto/sha.h>
 #include <asm/byteorder.h>
+#include <asm/unaligned.h>
 
 static inline u32 Ch(u32 x, u32 y, u32 z)
 {
@@ -42,7 +43,7 @@ static inline u32 Maj(u32 x, u32 y, u32 z)
 
 static inline void LOAD_OP(int I, u32 *W, const u8 *input)
 {
-       W[I] = __be32_to_cpu( ((__be32*)(input))[I] );
+       W[I] = get_unaligned_be32((__u32 *)input + I);
 }
 
 static inline void BLEND_OP(int I, u32 *W)
index 6ed124f3ea0f064cbe3f757d09a85e9e44c7ac54..6dde57dc511bab6c0068837356c7992f47b298cf 100644 (file)
@@ -20,6 +20,7 @@
 #include <crypto/sha.h>
 #include <linux/percpu.h>
 #include <asm/byteorder.h>
+#include <asm/unaligned.h>
 
 static inline u64 Ch(u64 x, u64 y, u64 z)
 {
@@ -68,7 +69,7 @@ static const u64 sha512_K[80] = {
 
 static inline void LOAD_OP(int I, u64 *W, const u8 *input)
 {
-       W[I] = __be64_to_cpu( ((__be64*)(input))[I] );
+       W[I] = get_unaligned_be64((__u64 *)input + I);
 }
 
 static inline void BLEND_OP(int I, u64 *W)