Re: [PATCH v2 0/5] crypto: add sha256() function

2020-07-16 Thread Herbert Xu
On Wed, Jul 08, 2020 at 09:39:38AM -0700, Eric Biggers wrote: > This series adds a function sha256() to the sha256 library so that users > who want to compute a hash in one step can just call sha256() instead of > sha256_init() + sha256_update() + sha256_final(). > > Patches 3-5 then convert some

[PATCH v2 0/5] crypto: add sha256() function

2020-07-08 Thread Eric Biggers
This series adds a function sha256() to the sha256 library so that users who want to compute a hash in one step can just call sha256() instead of sha256_init() + sha256_update() + sha256_final(). Patches 3-5 then convert some users to use it. Changed v1 => v2: - Added sparc patch to fix a build