2009-02-18 22:47:10

by Lee Nipper

[permalink] [raw]
Subject: [PATCH] crypto: ahash - fix ahash digest size

crypto_ahash_show changed to use cra_ahash for digestsize reference.

Signed-off-by: Lee Nipper <[email protected]>
---
Makes digestsize for an ahash to be shown correctly.
crypto/ahash.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/crypto/ahash.c b/crypto/ahash.c
index ba5292d..b2d1ee3 100644
--- a/crypto/ahash.c
+++ b/crypto/ahash.c
@@ -214,7 +214,7 @@ static void crypto_ahash_show(struct seq_file *m, struct crypto_alg *alg)
seq_printf(m, "async : %s\n", alg->cra_flags & CRYPTO_ALG_ASYNC ?
"yes" : "no");
seq_printf(m, "blocksize : %u\n", alg->cra_blocksize);
- seq_printf(m, "digestsize : %u\n", alg->cra_hash.digestsize);
+ seq_printf(m, "digestsize : %u\n", alg->cra_ahash.digestsize);
}

const struct crypto_type crypto_ahash_type = {
--
1.6.0.4




2009-02-19 06:47:10

by Herbert Xu

[permalink] [raw]
Subject: Re: [PATCH] crypto: ahash - fix ahash digest size

Lee Nipper <[email protected]> wrote:
> crypto_ahash_show changed to use cra_ahash for digestsize reference.
>
> Signed-off-by: Lee Nipper <[email protected]>

Good catch! Applied to crpyto-2.6.

Thanks,
--
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmV>HI~} <[email protected]>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt