Commit 1f2ae01f5b for openssl.org
commit 1f2ae01f5ba4b5711f814942e23450e0d7e4dcb9
Author: Neil Horman <nhorman@openssl.org>
Date: Tue Jan 20 12:21:42 2026 -0500
Send SHA224_Update through the aproproate thunk
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/29650)
diff --git a/providers/implementations/digests/sha2_prov.c b/providers/implementations/digests/sha2_prov.c
index 28bba27368..3e7f719f0d 100644
--- a/providers/implementations/digests/sha2_prov.c
+++ b/providers/implementations/digests/sha2_prov.c
@@ -289,7 +289,7 @@ IMPLEMENT_digest_functions_with_settable_ctx(
IMPLEMENT_digest_functions_with_serialize(sha224, SHA256_CTX,
SHA256_CBLOCK, SHA224_DIGEST_LENGTH,
SHA2_FLAGS, SHA224_Init,
- SHA224_Update, SHA224_Final,
+ SHA256_Update_thunk, SHA224_Final,
SHA256_Serialize, SHA256_Deserialize)
/* ossl_sha256_functions */