On Sun, Sep 17, 2023 at 09:09:10PM +0200, Greg Kroah-Hartman wrote: > 5.10-stable review patch. If anyone has any objections, please let me know. > > ------------------ > > From: Eric Biggers <ebiggers@xxxxxxxxxx> > > [ Upstream commit 28dcca4cc0c01e2467549a36b1b0eacfdb01236c ] > > Sync the BLAKE2b code with the BLAKE2s code as much as possible: > > - Move a lot of code into new headers <crypto/blake2b.h> and > <crypto/internal/blake2b.h>, and adjust it to be like the > corresponding BLAKE2s code, i.e. like <crypto/blake2s.h> and > <crypto/internal/blake2s.h>. > > - Rename constants, e.g. BLAKE2B_*_DIGEST_SIZE => BLAKE2B_*_HASH_SIZE. > > - Use a macro BLAKE2B_ALG() to define the shash_alg structs. > > - Export blake2b_compress_generic() for use as a fallback. > > This makes it much easier to add optimized implementations of BLAKE2b, > as optimized implementations can use the helper functions > crypto_blake2b_{setkey,init,update,final}() and > blake2b_compress_generic(). The ARM implementation will use these. > > But this change is also helpful because it eliminates unnecessary > differences between the BLAKE2b and BLAKE2s code, so that the same > improvements can easily be made to both. (The two algorithms are > basically identical, except for the word size and constants.) It also > makes it straightforward to add a library API for BLAKE2b in the future > if/when it's needed. > > This change does make the BLAKE2b code slightly more complicated than it > needs to be, as it doesn't actually provide a library API yet. For > example, __blake2b_update() doesn't really need to exist yet; it could > just be inlined into crypto_blake2b_update(). But I believe this is > outweighed by the benefits of keeping the code in sync. > > Signed-off-by: Eric Biggers <ebiggers@xxxxxxxxxx> > Acked-by: Ard Biesheuvel <ardb@xxxxxxxxxx> > Signed-off-by: Herbert Xu <herbert@xxxxxxxxxxxxxxxxxxx> > Stable-dep-of: 9ae4577bc077 ("crypto: api - Use work queue in crypto_destroy_instance") > Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx> 1.) This isn't a Stable-dep-of 9ae4577bc077. I don't see why this is being backported. 2.) On lore.kernel.org, there is no record of this patch being queued to 5.10. See https://lore.kernel.org/all/?q=%22sync+with+blake2s+implementation%22. The first mention of 5.10 and this patch is this thread, which is already the -rc1 review. I guess the only list that the initial "patch was queued" email was sent to is stable-commits, and stable-commits is not archived on lore.kernel.org. That is surprising and makes it harder for people to give feedback on patches going into stable. stable-commits should be archived on lore.kernel.lorg, and patches should generally be sent to more lists as well. (I'm probably shouting into a void here as I've given this same feedback on other patches before and nothing changed, but here it is again...) - Eric