diff options
Diffstat (limited to 'crypto/rmd320.c')
-rw-r--r-- | crypto/rmd320.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/rmd320.c b/crypto/rmd320.c index 5b172f89e0c9..dba03ecf5360 100644 --- a/crypto/rmd320.c +++ b/crypto/rmd320.c | |||
@@ -47,7 +47,7 @@ struct rmd320_ctx { | |||
47 | #define F5(x, y, z) (x ^ (y | ~z)) | 47 | #define F5(x, y, z) (x ^ (y | ~z)) |
48 | 48 | ||
49 | #define ROUND(a, b, c, d, e, f, k, x, s) { \ | 49 | #define ROUND(a, b, c, d, e, f, k, x, s) { \ |
50 | (a) += f((b), (c), (d)) + le32_to_cpu(x) + (k); \ | 50 | (a) += f((b), (c), (d)) + le32_to_cpup(&(x)) + (k); \ |
51 | (a) = rol32((a), (s)) + (e); \ | 51 | (a) = rol32((a), (s)) + (e); \ |
52 | (c) = rol32((c), 10); \ | 52 | (c) = rol32((c), 10); \ |
53 | } | 53 | } |
@@ -353,7 +353,7 @@ static void rmd320_final(struct crypto_tfm *tfm, u8 *out) | |||
353 | 353 | ||
354 | /* Store state in digest */ | 354 | /* Store state in digest */ |
355 | for (i = 0; i < 10; i++) | 355 | for (i = 0; i < 10; i++) |
356 | dst[i] = cpu_to_le32(rctx->state[i]); | 356 | dst[i] = cpu_to_le32p(&rctx->state[i]); |
357 | 357 | ||
358 | /* Wipe context */ | 358 | /* Wipe context */ |
359 | memset(rctx, 0, sizeof(*rctx)); | 359 | memset(rctx, 0, sizeof(*rctx)); |