Searched refs:hmac_size (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/crypto/openssl/crypto/hmac/
H A Dhm_ameth.c71 static int hmac_size(const EVP_PKEY *pkey) function
155 hmac_size,
/freebsd-11-stable/contrib/ldns/ldns/
H A Dkeys.h266 * \param[out] hmac_size the number of bits in the resulting buffer
269 unsigned char *ldns_key_new_frm_fp_hmac(FILE *fp, size_t *hmac_size);
279 * \param[out] hmac_size the number of bits in the resulting buffer
282 unsigned char *ldns_key_new_frm_fp_hmac_l(FILE *fp, int *line_nr, size_t *hmac_size);
365 * \param[in] hmac_size the size of the hmac data
367 void ldns_key_set_hmac_size(ldns_key *k, size_t hmac_size);
/freebsd-11-stable/contrib/ldns/
H A Dkeys.c301 size_t hmac_size; local
464 hmac = ldns_key_new_frm_fp_hmac_l(fp, line_nr, &hmac_size);
469 ldns_key_set_hmac_size(k, hmac_size);
752 ldns_key_new_frm_fp_hmac(FILE *f, size_t *hmac_size) argument
754 return ldns_key_new_frm_fp_hmac_l(f, NULL, hmac_size);
760 , size_t *hmac_size
774 *hmac_size = i;
779 *hmac_size = 0;
1038 ldns_key_set_hmac_size(ldns_key *k, size_t hmac_size) argument
1040 k->_key.hmac.size = hmac_size;
[all...]

Completed in 46 milliseconds