Searched refs:hmac_update (Results 1 – 4 of 4) sorted by relevance
/freebsd/crypto/libecc/src/hash/ |
H A D | hmac.c | 84 int hmac_update(hmac_context *ctx, const u8 *input, u32 ilen) in hmac_update() function 143 ret = hmac_update(&ctx, input, ilen); EG(ret, err); in hmac() 165 ret = hmac_update(&ctx, inputs[pos], ilens[pos]); EG(ret, err); in hmac_scattered()
|
/freebsd/crypto/libecc/src/sig/ |
H A D | ecdsa_common.c | 82 ret = hmac_update(&hmac_ctx, V, hsize); EG(ret, err); in __ecdsa_rfc6979_nonce() 85 ret = hmac_update(&hmac_ctx, &tmp, 1); EG(ret, err); in __ecdsa_rfc6979_nonce() 86 ret = hmac_update(&hmac_ctx, priv_key_buff, q_len); EG(ret, err); in __ecdsa_rfc6979_nonce() 95 ret = hmac_update(&hmac_ctx, T, q_len); EG(ret, err); in __ecdsa_rfc6979_nonce() 104 ret = hmac_update(&hmac_ctx, V, hsize); EG(ret, err); in __ecdsa_rfc6979_nonce() 107 ret = hmac_update(&hmac_ctx, &tmp, 1); EG(ret, err); in __ecdsa_rfc6979_nonce() 108 ret = hmac_update(&hmac_ctx, priv_key_buff, q_len); EG(ret, err); in __ecdsa_rfc6979_nonce() 111 ret = hmac_update(&hmac_ctx, T, q_len); EG(ret, err); in __ecdsa_rfc6979_nonce() 153 ret = hmac_update(&hmac_ctx, V, hsize); EG(ret, err); in __ecdsa_rfc6979_nonce() 156 ret = hmac_update(&hmac_ctx, &tmp, 1); EG(ret, err); in __ecdsa_rfc6979_nonce()
|
/freebsd/crypto/openssl/providers/implementations/macs/ |
H A D | hmac_prov.c | 42 static OSSL_FUNC_mac_update_fn hmac_update; variable 188 static int hmac_update(void *vmacctx, const unsigned char *data, in hmac_update() function 348 { OSSL_FUNC_MAC_UPDATE, (void (*)(void))hmac_update },
|
/freebsd/crypto/libecc/include/libecc/hash/ |
H A D | hmac.h | 28 ATTRIBUTE_WARN_UNUSED_RET int hmac_update(hmac_context *ctx, const u8 *input, u32 ilen);
|