mbox series

[0/4] crypto: adiantum optimizations

Message ID 20231010055946.263981-1-ebiggers@kernel.org (mailing list archive)
Headers show
Series crypto: adiantum optimizations | expand

Message

Eric Biggers Oct. 10, 2023, 5:59 a.m. UTC
This series slightly improves the performance of adiantum encryption and
decryption on single-page messages.

Eric Biggers (4):
  crypto: adiantum - add fast path for single-page messages
  crypto: arm/nhpoly1305 - implement ->digest
  crypto: arm64/nhpoly1305 - implement ->digest
  crypto: x86/nhpoly1305 - implement ->digest

 arch/arm/crypto/nhpoly1305-neon-glue.c   |  9 ++++
 arch/arm64/crypto/nhpoly1305-neon-glue.c |  9 ++++
 arch/x86/crypto/nhpoly1305-avx2-glue.c   |  9 ++++
 arch/x86/crypto/nhpoly1305-sse2-glue.c   |  9 ++++
 crypto/adiantum.c                        | 65 +++++++++++++++++-------
 5 files changed, 83 insertions(+), 18 deletions(-)

base-commit: 8468516f9f93a41dc65158b6428a1a1039c68f20

Comments

Herbert Xu Oct. 20, 2023, 5:52 a.m. UTC | #1
Eric Biggers <ebiggers@kernel.org> wrote:
> This series slightly improves the performance of adiantum encryption and
> decryption on single-page messages.
> 
> Eric Biggers (4):
>  crypto: adiantum - add fast path for single-page messages
>  crypto: arm/nhpoly1305 - implement ->digest
>  crypto: arm64/nhpoly1305 - implement ->digest
>  crypto: x86/nhpoly1305 - implement ->digest
> 
> arch/arm/crypto/nhpoly1305-neon-glue.c   |  9 ++++
> arch/arm64/crypto/nhpoly1305-neon-glue.c |  9 ++++
> arch/x86/crypto/nhpoly1305-avx2-glue.c   |  9 ++++
> arch/x86/crypto/nhpoly1305-sse2-glue.c   |  9 ++++
> crypto/adiantum.c                        | 65 +++++++++++++++++-------
> 5 files changed, 83 insertions(+), 18 deletions(-)
> 
> base-commit: 8468516f9f93a41dc65158b6428a1a1039c68f20

All applied.  Thanks.