Re: [PATCH 03/26] lib/crypto: sha1: Add SHA-1 library functions

2025-07-13 Thread Eric Biggers
On Sun, Jul 13, 2025 at 03:05:16PM +, Elliott, Robert (Servers) wrote: > > -Original Message- > > From: Eric Biggers > > Sent: Saturday, July 12, 2025 6:23 PM > > Subject: [PATCH 03/26] lib/crypto: sha1: Add SHA-1 library functions > ... >

RE: [PATCH 03/26] lib/crypto: sha1: Add SHA-1 library functions

2025-07-13 Thread Elliott, Robert (Servers)
> -Original Message- > From: Eric Biggers > Sent: Saturday, July 12, 2025 6:23 PM > Subject: [PATCH 03/26] lib/crypto: sha1: Add SHA-1 library functions ... > +static void __maybe_unused sha1_blocks_generic(struct sha1_block

[PATCH 03/26] lib/crypto: sha1: Add SHA-1 library functions

2025-07-12 Thread Eric Biggers
Add a library interface for SHA-1, following the SHA-2 one. As was the case with SHA-2, this will be useful for various in-kernel users. The crypto_shash interface will be reimplemented on top of it as well. Signed-off-by: Eric Biggers --- include/crypto/sha1.h | 60 +++ l