Re: [PATCH 1/2] lib: add BLAKE2 hash support

2022-01-18 Thread Tom Rini
On Mon, Dec 27, 2021 at 02:12:07PM +0800, Qu Wenruo wrote: > The code is cross-ported from BLAKE2 reference implementation > (https://github.com/BLAKE2/BLAKE2). > > With minimal change to remove unused macros/features. > > Currently there is only one user inside U-boot (btrfs), and since it > on

[PATCH 1/2] lib: add BLAKE2 hash support

2021-12-26 Thread Qu Wenruo
The code is cross-ported from BLAKE2 reference implementation (https://github.com/BLAKE2/BLAKE2). With minimal change to remove unused macros/features. Currently there is only one user inside U-boot (btrfs), and since it only utilize BLAKE2B, all other favors are all removed. Signed-off-by: Qu W