summaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2023-10-22 01:10:52 -0700
committerHerbert Xu <herbert@gondor.apana.org.au>2023-10-27 18:04:29 +0800
commit403af307cbab85306c643b0397586f9f01afdc53 (patch)
tree968bd26e48bdb5de2aa154e29c6553f9a51716fb /crypto
parent20078fc78b54451a69c347fd5eeb3234b133b6df (diff)
downloadlinux-crypto-403af307cbab85306c643b0397586f9f01afdc53.tar.gz
linux-crypto-403af307cbab85306c643b0397586f9f01afdc53.zip
crypto: gcm - stop using alignmask of ahash
Now that the alignmask for ahash and shash algorithms is always 0, simplify crypto_gcm_create_common() accordingly. Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/gcm.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/gcm.c b/crypto/gcm.c
index 91ce6e0e..84f7c23d 100644
--- a/crypto/gcm.c
+++ b/crypto/gcm.c
@@ -629,8 +629,7 @@ static int crypto_gcm_create_common(struct crypto_template *tmpl,
inst->alg.base.cra_priority = (ghash->base.cra_priority +
ctr->base.cra_priority) / 2;
inst->alg.base.cra_blocksize = 1;
- inst->alg.base.cra_alignmask = ghash->base.cra_alignmask |
- ctr->base.cra_alignmask;
+ inst->alg.base.cra_alignmask = ctr->base.cra_alignmask;
inst->alg.base.cra_ctxsize = sizeof(struct crypto_gcm_ctx);
inst->alg.ivsize = GCM_AES_IV_SIZE;
inst->alg.chunksize = ctr->chunksize;