summaryrefslogtreecommitdiff
path: root/crypto/authenc.c
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2009-07-12 12:50:11 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2009-07-14 12:58:07 +0800
commit4491f4107f611239c60c5cd8e6bc11825ac6224e (patch)
treec3b506fd7ee5832bf18a0b331b726d232141d8e0 /crypto/authenc.c
parent0c6e49480d74107e65e8c42134f9a2e45aad7e00 (diff)
downloadlinux-crypto-4491f4107f611239c60c5cd8e6bc11825ac6224e.tar.gz
linux-crypto-4491f4107f611239c60c5cd8e6bc11825ac6224e.zip
crypto: authenc - Remove reference to crypto_hash
Now that there are no more legacy hash implementations we can remove the reference to crypto_hash. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/authenc.c')
-rw-r--r--crypto/authenc.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/crypto/authenc.c b/crypto/authenc.c
index 5793b64c..2e16ce00 100644
--- a/crypto/authenc.c
+++ b/crypto/authenc.c
@@ -436,11 +436,7 @@ static struct crypto_instance *crypto_authenc_alloc(struct rtattr **tb)
inst->alg.cra_type = &crypto_aead_type;
inst->alg.cra_aead.ivsize = enc->cra_ablkcipher.ivsize;
- inst->alg.cra_aead.maxauthsize = auth->cra_type == &crypto_hash_type ?
- auth->cra_hash.digestsize :
- auth->cra_type ?
- __crypto_shash_alg(auth)->digestsize :
- auth->cra_digest.dia_digestsize;
+ inst->alg.cra_aead.maxauthsize = __crypto_shash_alg(auth)->digestsize;
inst->alg.cra_ctxsize = sizeof(struct crypto_authenc_ctx);