mbox series

[0/3] crypto: arm - simplify bit sliced AES

Message ID 20220127113545.7821-1-ardb@kernel.org (mailing list archive)
Headers show
Series crypto: arm - simplify bit sliced AES | expand

Message

Ard Biesheuvel Jan. 27, 2022, 11:35 a.m. UTC
This contains a couple of improvements/simplifications for the bit
sliced AES driver implemented on ARM and arm64.

Ard Biesheuvel (3):
  crypto: arm/aes-neonbs-ctr - deal with non-multiples of AES block size
  crypto: arm64/aes-neonbs-ctr - fallback to plain NEON for final chunk
  crypto: arm64/aes-neonbs-xts - use plain NEON for non-power-of-2 input
    sizes

 arch/arm/crypto/aes-neonbs-core.S   | 105 ++++----
 arch/arm/crypto/aes-neonbs-glue.c   |  35 ++-
 arch/arm64/crypto/aes-glue.c        |   1 +
 arch/arm64/crypto/aes-neonbs-core.S | 264 +++++---------------
 arch/arm64/crypto/aes-neonbs-glue.c |  97 ++++---
 5 files changed, 189 insertions(+), 313 deletions(-)

Comments

Herbert Xu Feb. 5, 2022, 4:32 a.m. UTC | #1
On Thu, Jan 27, 2022 at 12:35:42PM +0100, Ard Biesheuvel wrote:
> This contains a couple of improvements/simplifications for the bit
> sliced AES driver implemented on ARM and arm64.
> 
> Ard Biesheuvel (3):
>   crypto: arm/aes-neonbs-ctr - deal with non-multiples of AES block size
>   crypto: arm64/aes-neonbs-ctr - fallback to plain NEON for final chunk
>   crypto: arm64/aes-neonbs-xts - use plain NEON for non-power-of-2 input
>     sizes
> 
>  arch/arm/crypto/aes-neonbs-core.S   | 105 ++++----
>  arch/arm/crypto/aes-neonbs-glue.c   |  35 ++-
>  arch/arm64/crypto/aes-glue.c        |   1 +
>  arch/arm64/crypto/aes-neonbs-core.S | 264 +++++---------------
>  arch/arm64/crypto/aes-neonbs-glue.c |  97 ++++---
>  5 files changed, 189 insertions(+), 313 deletions(-)

All applied.  Thanks.