diff options
author | Eric Biggers <ebiggers@google.com> | 2023-10-09 09:32:13 +0200 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2023-10-20 07:39:25 +0200 |
commit | 313a4074d78fc9b90c93c9298e9f90d86a144231 (patch) | |
tree | 4438c17ec79e16795e20606409cd910cec915d67 /crypto/deflate.c | |
parent | crypto: xts - use 'spawn' for underlying single-block cipher (diff) | |
download | linux-313a4074d78fc9b90c93c9298e9f90d86a144231.tar.xz linux-313a4074d78fc9b90c93c9298e9f90d86a144231.zip |
crypto: shash - optimize the default digest and finup
For an shash algorithm that doesn't implement ->digest, currently
crypto_shash_digest() with aligned input makes 5 indirect calls: 1 to
shash_digest_unaligned(), 1 to ->init, 2 to ->update ('alignmask + 1'
bytes, then the rest), then 1 to ->final. This is true even if the
algorithm implements ->finup. This is caused by an unnecessary fallback
to code meant to handle unaligned inputs. In fact,
crypto_shash_digest() already does the needed alignment check earlier.
Therefore, optimize the number of indirect calls for aligned inputs to 3
when the algorithm implements ->finup. It remains at 5 when the
algorithm implements neither ->finup nor ->digest.
Similarly, for an shash algorithm that doesn't implement ->finup,
currently crypto_shash_finup() with aligned input makes 4 indirect
calls: 1 to shash_finup_unaligned(), 2 to ->update, and
1 to ->final. Optimize this to 3 calls.
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/deflate.c')
0 files changed, 0 insertions, 0 deletions