sha512_update
ATTRIBUTE_WARN_UNUSED_RET int sha512_update(sha512_context *ctx, const u8 *input, u32 ilen);
return sha512_update((sha512_context*)hctx, chunk, chunklen);
ret = sha512_update(&ctx, input, ilen); EG(ret, err);
ret = sha512_update(&ctx, inputs[pos], ilens[pos]); EG(ret, err);
LEGACY_EVP_MD_METH_TABLE(sha512_init, sha512_update, sha512_final, NULL,