Skip to content

Commit

Permalink
crypto: authenc - Remove reference to crypto_hash
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Herbert Xu committed Jul 14, 2009
1 parent 3106caa commit 9ef074f
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions crypto/authenc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 9ef074f

Please sign in to comment.