Re: [PATCH] crypto: arm/blake2s - fix for big endian

2021-03-19 Thread Herbert Xu
Eric Biggers wrote: > From: Eric Biggers > > The new ARM BLAKE2s code doesn't work correctly (fails the self-tests) > in big endian kernel builds because it doesn't swap the endianness of > the message words when loading them. Fix this. > > Fixes: 5172d322d34c ("crypto: arm/blake2s - add ARM s

Re: [PATCH] crypto: arm/blake2s - fix for big endian

2021-03-10 Thread Ard Biesheuvel
On Wed, 10 Mar 2021 at 08:29, Eric Biggers wrote: > > From: Eric Biggers > > The new ARM BLAKE2s code doesn't work correctly (fails the self-tests) > in big endian kernel builds because it doesn't swap the endianness of > the message words when loading them. Fix this. > > Fixes: 5172d322d34c ("c

[PATCH] crypto: arm/blake2s - fix for big endian

2021-03-09 Thread Eric Biggers
From: Eric Biggers The new ARM BLAKE2s code doesn't work correctly (fails the self-tests) in big endian kernel builds because it doesn't swap the endianness of the message words when loading them. Fix this. Fixes: 5172d322d34c ("crypto: arm/blake2s - add ARM scalar optimized BLAKE2s") Signed-of