diff options
| -rw-r--r-- | crypto/rmd128.c | 8 |
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 @@ | |||
| 26 | struct rmd128_ctx { | 26 | struct 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 | ||
| 51 | static void rmd128_transform(u32 *state, u32 const *in) | 51 | static 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); |
