diff options
author | 2025-05-15 13:54:44 +0800 | |
---|---|---|
committer | 2025-05-19 13:48:19 +0800 | |
commit | 32a9fd8f498bffd99c5d5441015136206e351ae4 (patch) | |
tree | 347d9514b0c91abe00913b6255dcfe74e0c96c84 /crypto | |
parent | crypto: hmac - Add export_core and import_core (diff) | |
download | wireguard-linux-32a9fd8f498bffd99c5d5441015136206e351ae4.tar.xz wireguard-linux-32a9fd8f498bffd99c5d5441015136206e351ae4.zip |
crypto: shash - Set reqsize in shash_alg
Make reqsize static for shash algorithms.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/ahash.c | 1 | ||||
-rw-r--r-- | crypto/shash.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/crypto/ahash.c b/crypto/ahash.c index cf8bbe7e54c0..bf8375bb32c9 100644 --- a/crypto/ahash.c +++ b/crypto/ahash.c @@ -286,7 +286,6 @@ static int crypto_init_ahash_using_shash(struct crypto_tfm *tfm) crypto_ahash_set_flags(crt, crypto_shash_get_flags(shash) & CRYPTO_TFM_NEED_KEY); - crt->reqsize = sizeof(struct shash_desc) + crypto_shash_descsize(shash); return 0; } diff --git a/crypto/shash.c b/crypto/shash.c index 5bc74a72d5ad..37537d7995c7 100644 --- a/crypto/shash.c +++ b/crypto/shash.c @@ -511,6 +511,8 @@ static int shash_prepare_alg(struct shash_alg *alg) if (alg->statesize > HASH_MAX_STATESIZE) return -EINVAL; + base->cra_reqsize = sizeof(struct shash_desc) + alg->descsize; + return 0; } |