Searched refs:hmac_init (Results 1 – 5 of 5) sorted by relevance
/freebsd/crypto/libecc/src/hash/ |
H A D | hmac.c | 16 int hmac_init(hmac_context *ctx, const u8 *hmackey, u32 hmackey_len, in hmac_init() function 142 ret = hmac_init(&ctx, hmackey, hmackey_len, hash_type); EG(ret, err); in hmac() 162 ret = hmac_init(&ctx, hmackey, hmackey_len, hash_type); EG(ret, err); in hmac_scattered()
|
/freebsd/crypto/openssl/providers/implementations/macs/ |
H A D | hmac_prov.c | 41 static OSSL_FUNC_mac_init_fn hmac_init; variable 173 static int hmac_init(void *vmacctx, const unsigned char *key, in hmac_init() function 347 { OSSL_FUNC_MAC_INIT, (void (*)(void))hmac_init },
|
/freebsd/crypto/libecc/include/libecc/hash/ |
H A D | hmac.h | 26 ATTRIBUTE_WARN_UNUSED_RET int hmac_init(hmac_context *ctx, const u8 *hmackey, u32 hmackey_len, hash…
|
/freebsd/contrib/wpa/src/crypto/ |
H A D | crypto_libtomcrypt.c | 175 if (hmac_init(&ctx->u.hmac, find_hash("md5"), key, key_len) != in crypto_hash_init() 180 if (hmac_init(&ctx->u.hmac, find_hash("sha1"), key, key_len) != in crypto_hash_init()
|
/freebsd/crypto/libecc/src/sig/ |
H A D | ecdsa_common.c | 81 ret = hmac_init(&hmac_ctx, K, hsize, hash_type); EG(ret, err); in __ecdsa_rfc6979_nonce() 103 ret = hmac_init(&hmac_ctx, K, hsize, hash_type); EG(ret, err); in __ecdsa_rfc6979_nonce() 152 ret = hmac_init(&hmac_ctx, K, hsize, hash_type); EG(ret, err); in __ecdsa_rfc6979_nonce()
|