Symbol: hmac_update
crypto/libecc/include/libecc/hash/hmac.h
28
ATTRIBUTE_WARN_UNUSED_RET int hmac_update(hmac_context *ctx, const u8 *input, u32 ilen);
crypto/libecc/src/hash/hmac.c
143
ret = hmac_update(&ctx, input, ilen); EG(ret, err);
crypto/libecc/src/hash/hmac.c
165
ret = hmac_update(&ctx, inputs[pos], ilens[pos]); EG(ret, err);
crypto/libecc/src/sig/ecdsa_common.c
104
ret = hmac_update(&hmac_ctx, V, hsize); EG(ret, err);
crypto/libecc/src/sig/ecdsa_common.c
107
ret = hmac_update(&hmac_ctx, &tmp, 1); EG(ret, err);
crypto/libecc/src/sig/ecdsa_common.c
108
ret = hmac_update(&hmac_ctx, priv_key_buff, q_len); EG(ret, err);
crypto/libecc/src/sig/ecdsa_common.c
111
ret = hmac_update(&hmac_ctx, T, q_len); EG(ret, err);
crypto/libecc/src/sig/ecdsa_common.c
153
ret = hmac_update(&hmac_ctx, V, hsize); EG(ret, err);
crypto/libecc/src/sig/ecdsa_common.c
156
ret = hmac_update(&hmac_ctx, &tmp, 1); EG(ret, err);
crypto/libecc/src/sig/ecdsa_common.c
82
ret = hmac_update(&hmac_ctx, V, hsize); EG(ret, err);
crypto/libecc/src/sig/ecdsa_common.c
85
ret = hmac_update(&hmac_ctx, &tmp, 1); EG(ret, err);
crypto/libecc/src/sig/ecdsa_common.c
86
ret = hmac_update(&hmac_ctx, priv_key_buff, q_len); EG(ret, err);
crypto/libecc/src/sig/ecdsa_common.c
95
ret = hmac_update(&hmac_ctx, T, q_len); EG(ret, err);
crypto/openssl/providers/implementations/macs/hmac_prov.c
366
{ OSSL_FUNC_MAC_UPDATE, (void (*)(void))hmac_update },
crypto/openssl/providers/implementations/macs/hmac_prov.c
394
{ OSSL_FUNC_MAC_UPDATE, (void (*)(void))hmac_update },
crypto/openssl/providers/implementations/macs/hmac_prov.c
47
static OSSL_FUNC_mac_update_fn hmac_update;