mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
crypto: chacha20poly1305 - stop using alignmask of ahash
Now that the alignmask for ahash and shash algorithms is always 0, simplify chachapoly_create() accordingly. Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
36cfc05715
commit
381a796a18
@ -610,8 +610,7 @@ static int chachapoly_create(struct crypto_template *tmpl, struct rtattr **tb,
|
|||||||
inst->alg.base.cra_priority = (chacha->base.cra_priority +
|
inst->alg.base.cra_priority = (chacha->base.cra_priority +
|
||||||
poly->base.cra_priority) / 2;
|
poly->base.cra_priority) / 2;
|
||||||
inst->alg.base.cra_blocksize = 1;
|
inst->alg.base.cra_blocksize = 1;
|
||||||
inst->alg.base.cra_alignmask = chacha->base.cra_alignmask |
|
inst->alg.base.cra_alignmask = chacha->base.cra_alignmask;
|
||||||
poly->base.cra_alignmask;
|
|
||||||
inst->alg.base.cra_ctxsize = sizeof(struct chachapoly_ctx) +
|
inst->alg.base.cra_ctxsize = sizeof(struct chachapoly_ctx) +
|
||||||
ctx->saltlen;
|
ctx->saltlen;
|
||||||
inst->alg.ivsize = ivsize;
|
inst->alg.ivsize = ivsize;
|
||||||
|
Loading…
Reference in New Issue
Block a user