sha224_update
ATTRIBUTE_WARN_UNUSED_RET int sha224_update(sha224_context *ctx, const u8 *input, u32 ilen);
return sha224_update((sha224_context*)hctx, chunk, chunklen);
ret = sha224_update(&ctx, inputs[pos], ilens[pos]); EG(ret, err);
ret = sha224_update(&ctx, input, ilen); EG(ret, err);
LEGACY_EVP_MD_METH_TABLE(sha224_init, sha224_update, sha224_final, NULL,