diff options
Diffstat (limited to 'crypto/authenc.c')
-rw-r--r-- | crypto/authenc.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/crypto/authenc.c b/crypto/authenc.c index 5793b64c81a8..2e16ce0089cb 100644 --- a/crypto/authenc.c +++ b/crypto/authenc.c | |||
@@ -436,11 +436,7 @@ static struct crypto_instance *crypto_authenc_alloc(struct rtattr **tb) | |||
436 | inst->alg.cra_type = &crypto_aead_type; | 436 | inst->alg.cra_type = &crypto_aead_type; |
437 | 437 | ||
438 | inst->alg.cra_aead.ivsize = enc->cra_ablkcipher.ivsize; | 438 | inst->alg.cra_aead.ivsize = enc->cra_ablkcipher.ivsize; |
439 | inst->alg.cra_aead.maxauthsize = auth->cra_type == &crypto_hash_type ? | 439 | inst->alg.cra_aead.maxauthsize = __crypto_shash_alg(auth)->digestsize; |
440 | auth->cra_hash.digestsize : | ||
441 | auth->cra_type ? | ||
442 | __crypto_shash_alg(auth)->digestsize : | ||
443 | auth->cra_digest.dia_digestsize; | ||
444 | 440 | ||
445 | inst->alg.cra_ctxsize = sizeof(struct crypto_authenc_ctx); | 441 | inst->alg.cra_ctxsize = sizeof(struct crypto_authenc_ctx); |
446 | 442 | ||