Home
last modified time | relevance | path

Searched refs:local_hmac_key (Results 1 – 1 of 1) sorted by relevance

/freebsd/crypto/libecc/src/hash/
H A Dhmac.c21 u8 local_hmac_key[MAX_BLOCK_SIZE]; in hmac_init() local
28 ret = local_memset(local_hmac_key, 0, sizeof(local_hmac_key)); EG(ret, err); in hmac_init()
42 ret = local_memcpy(local_hmac_key, hmackey, hmackey_len); EG(ret, err); in hmac_init()
54 ret = h->hfunc_finalize(&tmp_ctx, local_hmac_key); EG(ret, err); in hmac_init()
68 ipad[i] ^= local_hmac_key[i]; in hmac_init()
73 opad[i] ^= local_hmac_key[i]; in hmac_init()