hmac_update
ATTRIBUTE_WARN_UNUSED_RET int hmac_update(hmac_context *ctx, const u8 *input, u32 ilen);
ret = hmac_update(&ctx, input, ilen); EG(ret, err);
ret = hmac_update(&ctx, inputs[pos], ilens[pos]); EG(ret, err);
ret = hmac_update(&hmac_ctx, V, hsize); EG(ret, err);
ret = hmac_update(&hmac_ctx, &tmp, 1); EG(ret, err);
ret = hmac_update(&hmac_ctx, priv_key_buff, q_len); EG(ret, err);
ret = hmac_update(&hmac_ctx, T, q_len); EG(ret, err);
ret = hmac_update(&hmac_ctx, V, hsize); EG(ret, err);
ret = hmac_update(&hmac_ctx, &tmp, 1); EG(ret, err);
ret = hmac_update(&hmac_ctx, V, hsize); EG(ret, err);
ret = hmac_update(&hmac_ctx, &tmp, 1); EG(ret, err);
ret = hmac_update(&hmac_ctx, priv_key_buff, q_len); EG(ret, err);
ret = hmac_update(&hmac_ctx, T, q_len); EG(ret, err);
{ OSSL_FUNC_MAC_UPDATE, (void (*)(void))hmac_update },
{ OSSL_FUNC_MAC_UPDATE, (void (*)(void))hmac_update },
static OSSL_FUNC_mac_update_fn hmac_update;