crypto: sha256 - Implement export_core() and import_core()
authorEric Biggers <ebiggers@kernel.org>
Mon, 1 Sep 2025 16:50:12 +0000 (09:50 -0700)
committerEric Biggers <ebiggers@kernel.org>
Wed, 3 Sep 2025 02:02:37 +0000 (19:02 -0700)
commit30b2a8c4f2f3833f4f813d3e0d003f7c50cdf275
treeeeb6bd4e5c4434b4f526e019e797dee309a59e5e
parent827733acbe4c3a0e117b6ebde5ed269fb7686427
crypto: sha256 - Implement export_core() and import_core()

Since commit 9d7a0ab1c753 ("crypto: ahash - Handle partial blocks in
API"), the recently-added export_core() and import_core() methods in
struct shash_alg have effectively become mandatory (even though it is
not tested or enforced), since legacy drivers that need a fallback
depend on them.  Make crypto/sha256.c compatible with these legacy
drivers by adding export_core() and import_core() methods to it.

Reported-by: Giovanni Cabiddu <giovanni.cabiddu@intel.com>
Reported-by: Ovidiu Panait <ovidiu.panait.oss@gmail.com>
Closes: https://lore.kernel.org/r/aLSnCc9Ws5L9y+8X@gcabiddu-mobl.ger.corp.intel.com
Fixes: 07f090959bba ("crypto: sha256 - Use same state format as legacy drivers")
Tested-by: Giovanni Cabiddu <giovanni.cabiddu@intel.com>
Tested-by: Ovidiu Panait <ovidiu.panait.oss@gmail.com>
Link: https://lore.kernel.org/r/20250901165013.48649-3-ebiggers@kernel.org
Signed-off-by: Eric Biggers <ebiggers@kernel.org>
crypto/sha256.c