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

2020-07-08 Thread Hans de Goede
Hi, On 7/7/20 8:58 PM, 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 2-4 then convert some users to use it. Eric Big

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

2020-07-07 Thread Ard Biesheuvel
On Tue, 7 Jul 2020 at 21:59, 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 2-4 then convert some users to us

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

2020-07-07 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 2-4 then convert some users to use it. Eric Biggers (4): crypto: lib/sha256 - add sha256()