diff options
author | Eric Biggers <ebiggers@google.com> | 2023-10-19 08:53:42 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2023-10-27 13:04:25 +0300 |
commit | f6f1514cf72e5d9c2b7c2bc53c43f482b6183d29 (patch) | |
tree | 711a96d3c6b607c4cf4c693088386f261a249d9e /crypto | |
parent | 321dfe9777a88cdafe676bb03bab07af26c6cfd8 (diff) | |
download | linux-f6f1514cf72e5d9c2b7c2bc53c43f482b6183d29.tar.xz |
crypto: hctr2 - stop using alignmask of shash_alg
Now that the shash algorithm type does not support nonzero alignmasks,
shash_alg::base.cra_alignmask is always 0, so OR-ing it into another
value is a no-op.
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/hctr2.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/hctr2.c b/crypto/hctr2.c index 653fde727f0f..87e7547ad186 100644 --- a/crypto/hctr2.c +++ b/crypto/hctr2.c @@ -485,8 +485,7 @@ static int hctr2_create_common(struct crypto_template *tmpl, inst->alg.base.cra_blocksize = BLOCKCIPHER_BLOCK_SIZE; inst->alg.base.cra_ctxsize = sizeof(struct hctr2_tfm_ctx) + polyval_alg->statesize * 2; - inst->alg.base.cra_alignmask = xctr_alg->base.cra_alignmask | - polyval_alg->base.cra_alignmask; + inst->alg.base.cra_alignmask = xctr_alg->base.cra_alignmask; /* * The hash function is called twice, so it is weighted higher than the * xctr and blockcipher. |