On Fri, 25 Apr 2025 at 23:51, Eric Biggers <ebigg...@kernel.org> wrote: > > Following the example of several other algorithms (e.g. CRC32, ChaCha, > Poly1305, BLAKE2s), this series refactors the kernel's existing > architecture-optimized SHA-256 code to be available via the library API, > instead of just via the crypto_shash API as it was before. It also > reimplements the SHA-256 crypto_shash API on top of the library API.
Well, this certainly looks a lot simpler, and avoids the duplicated crypto glue setup for each architecture. So this very much seems to be the RightThing(tm) to do. Linus