crypto: hash - Fixed digest size check

The digest size check on hash algorithms is incorrect.  It's
perfectly valid for hash algorithms to have a digest length
longer than their block size.  For example crc32c has a block
size of 1 and a digest size of 4.  Rather than having it lie
about its block size, this patch fixes the checks to do what
they really should which is to bound the digest size so that
code placing the digest on the stack continue to work.

HMAC however still needs to check this as it's only defined
for such algorithms.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
此提交包含在:
Herbert Xu
2008-07-07 20:23:56 +08:00
父節點 caee16883a
當前提交 ca786dc738
共有 4 個檔案被更改,包括 13 行新增9 行删除

查看文件

@@ -68,7 +68,7 @@ static int crypto_init_ahash_ops(struct crypto_tfm *tfm, u32 type, u32 mask)
struct ahash_alg *alg = &tfm->__crt_alg->cra_ahash;
struct ahash_tfm *crt = &tfm->crt_ahash;
if (alg->digestsize > crypto_tfm_alg_blocksize(tfm))
if (alg->digestsize > PAGE_SIZE / 8)
return -EINVAL;
crt->init = alg->init;