diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2015-05-27 14:37:34 +0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2015-05-28 11:23:18 +0800 |
commit | 9d03aee125d73908ddbe9c1b96338c9b69e1abc0 (patch) | |
tree | 10a99478e53ccebdb11e9fecfa9b4646aa4a9122 /crypto | |
parent | d97de47ca1d160acdf29f0b4eadf2ae831bd5254 (diff) | |
download | op-kernel-dev-9d03aee125d73908ddbe9c1b96338c9b69e1abc0.zip op-kernel-dev-9d03aee125d73908ddbe9c1b96338c9b69e1abc0.tar.gz |
crypto: echainiv - Fix IV size in context size calculation
This patch fixes a bug in the context size calculation where we
were still referring to the old cra_aead.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/echainiv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/echainiv.c b/crypto/echainiv.c index 0f79fc6..62a817f 100644 --- a/crypto/echainiv.c +++ b/crypto/echainiv.c @@ -280,7 +280,7 @@ static int echainiv_aead_create(struct crypto_template *tmpl, inst->alg.base.cra_alignmask |= __alignof__(u32) - 1; inst->alg.base.cra_ctxsize = sizeof(struct echainiv_ctx); - inst->alg.base.cra_ctxsize += inst->alg.base.cra_aead.ivsize; + inst->alg.base.cra_ctxsize += inst->alg.ivsize; done: err = aead_register_instance(tmpl, inst); |