summaryrefslogtreecommitdiff
path: root/crypto/aead.c
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2015-05-23 15:41:53 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2015-05-25 18:41:31 +0800
commitd89db82b2e49bd5c3e5350f042198b9911e9c93f (patch)
treed8c81ff8aaa41ae94e17b481156bcd4adbf7d829 /crypto/aead.c
parent61f3d6de397ac1ad78fa426eec0959dfb734e48b (diff)
downloadlinux-crypto-d89db82b2e49bd5c3e5350f042198b9911e9c93f.tar.gz
linux-crypto-d89db82b2e49bd5c3e5350f042198b9911e9c93f.zip
crypto: aead - Do not set cra_type for new style instances
The function aead_geniv_alloc currently sets cra_type even for new style instances. This is unnecessary and may hide bugs such as when our caller uses crypto_register_instance instead of the correct aead_register_instance. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to '')
-rw-r--r--crypto/aead.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/crypto/aead.c b/crypto/aead.c
index a6385bd0..070e4b9e 100644
--- a/crypto/aead.c
+++ b/crypto/aead.c
@@ -468,12 +468,10 @@ struct aead_instance *aead_geniv_alloc(struct crypto_template *tmpl,
CRYPTO_MAX_ALG_NAME)
goto err_drop_alg;
- inst->alg.base.cra_flags = CRYPTO_ALG_TYPE_AEAD;
- inst->alg.base.cra_flags |= alg->base.cra_flags & CRYPTO_ALG_ASYNC;
+ inst->alg.base.cra_flags = alg->base.cra_flags & CRYPTO_ALG_ASYNC;
inst->alg.base.cra_priority = alg->base.cra_priority;
inst->alg.base.cra_blocksize = alg->base.cra_blocksize;
inst->alg.base.cra_alignmask = alg->base.cra_alignmask;
- inst->alg.base.cra_type = &crypto_new_aead_type;
inst->alg.ivsize = ivsize;
inst->alg.maxauthsize = maxauthsize;