aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/rmd160.c
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2008-06-02 07:30:38 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2008-07-10 08:35:15 -0400
commit5cdcc22f25b0766fe16d5dd8e3b2efc91fa4da6e (patch)
tree90078f745a3cf28efdc32db030c3505e06c3c74a /crypto/rmd160.c
parent0936a944068ef68f8b19f437e03f4654c29f2423 (diff)
[CRYPTO] rmd: Use pointer form of endian swapping operations
This patch converts the relevant code in the rmd implementations to use the pointer form of the endian swapping operations. This allows certain architectures to generate more optimised code. For example, on sparc64 this more than halves the CPU cycles on a typical hashing operation. Based on a patch by David Miller. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/rmd160.c')
-rw-r--r--crypto/rmd160.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/rmd160.c b/crypto/rmd160.c
index 136e31f56d53..e9fd5f6a0acb 100644
--- a/crypto/rmd160.c
+++ b/crypto/rmd160.c
@@ -47,7 +47,7 @@ struct rmd160_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}
@@ -329,7 +329,7 @@ static void rmd160_final(struct crypto_tfm *tfm, u8 *out)
329 329
330 /* Store state in digest */ 330 /* Store state in digest */
331 for (i = 0; i < 5; i++) 331 for (i = 0; i < 5; i++)
332 dst[i] = cpu_to_le32(rctx->state[i]); 332 dst[i] = cpu_to_le32p(&rctx->state[i]);
333 333
334 /* Wipe context */ 334 /* Wipe context */
335 memset(rctx, 0, sizeof(*rctx)); 335 memset(rctx, 0, sizeof(*rctx));