aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/rmd128.c
diff options
context:
space:
mode:
authorHarvey Harrison <harvey.harrison@gmail.com>2008-07-04 07:45:57 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2008-07-10 08:35:17 -0400
commitb2b6a1720db65c97885ab9fc51fa23be47573bf4 (patch)
tree002599acfc17da3c207db42f3f5a893a2cf204e8 /crypto/rmd128.c
parentbd699f2df6dbc2f4cba528fe598bd63a4d3702c5 (diff)
crypto: rmd128 - sparse annotations
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/rmd128.c')
-rw-r--r--crypto/rmd128.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/rmd128.c b/crypto/rmd128.c
index 1a481df66913..5de6fa2a76fb 100644
--- a/crypto/rmd128.c
+++ b/crypto/rmd128.c
@@ -26,7 +26,7 @@
26struct rmd128_ctx { 26struct rmd128_ctx {
27 u64 byte_count; 27 u64 byte_count;
28 u32 state[4]; 28 u32 state[4];
29 u32 buffer[16]; 29 __le32 buffer[16];
30}; 30};
31 31
32#define K1 RMD_K1 32#define K1 RMD_K1
@@ -48,7 +48,7 @@ struct rmd128_ctx {
48 (a) = rol32((a), (s)); \ 48 (a) = rol32((a), (s)); \
49} 49}
50 50
51static void rmd128_transform(u32 *state, u32 const *in) 51static void rmd128_transform(u32 *state, const __le32 *in)
52{ 52{
53 u32 aa, bb, cc, dd, aaa, bbb, ccc, ddd; 53 u32 aa, bb, cc, dd, aaa, bbb, ccc, ddd;
54 54
@@ -269,8 +269,8 @@ static void rmd128_final(struct crypto_tfm *tfm, u8 *out)
269{ 269{
270 struct rmd128_ctx *rctx = crypto_tfm_ctx(tfm); 270 struct rmd128_ctx *rctx = crypto_tfm_ctx(tfm);
271 u32 i, index, padlen; 271 u32 i, index, padlen;
272 u64 bits; 272 __le64 bits;
273 u32 *dst = (u32 *)out; 273 __le32 *dst = (__le32 *)out;
274 static const u8 padding[64] = { 0x80, }; 274 static const u8 padding[64] = { 0x80, };
275 275
276 bits = cpu_to_le64(rctx->byte_count << 3); 276 bits = cpu_to_le64(rctx->byte_count << 3);