Searched refs:hmac_size (Results 1 – 4 of 4) sorted by relevance
/freebsd/crypto/libecc/src/sig/ |
H A D | ecdsa_common.c | 60 u8 hmac_size; in __ecdsa_rfc6979_nonce() local 96 hmac_size = sizeof(K); in __ecdsa_rfc6979_nonce() 97 ret = hmac_finalize(&hmac_ctx, K, &hmac_size); EG(ret, err); in __ecdsa_rfc6979_nonce() 100 hmac_size = sizeof(V); in __ecdsa_rfc6979_nonce() 101 ret = hmac(K, hsize, hash_type, V, hsize, V, &hmac_size); EG(ret, err); in __ecdsa_rfc6979_nonce() 112 hmac_size = sizeof(K); in __ecdsa_rfc6979_nonce() 113 ret = hmac_finalize(&hmac_ctx, K, &hmac_size); EG(ret, err); in __ecdsa_rfc6979_nonce() 115 hmac_size = sizeof(V); in __ecdsa_rfc6979_nonce() 116 ret = hmac(K, hsize, hash_type, V, hsize, V, &hmac_size); EG(ret, err); in __ecdsa_rfc6979_nonce() 140 hmac_size = sizeof(V); in __ecdsa_rfc6979_nonce() [all …]
|
/freebsd/contrib/ldns/ldns/ |
H A D | keys.h | 285 unsigned char *ldns_key_new_frm_fp_hmac(FILE *fp, size_t *hmac_size); 296 unsigned char *ldns_key_new_frm_fp_hmac_l(FILE *fp, int *line_nr, size_t *hmac_size); 386 void ldns_key_set_hmac_size(ldns_key *k, size_t hmac_size);
|
/freebsd/contrib/ldns/ |
H A D | keys.c | 429 size_t hmac_size; in ldns_key_new_frm_fp_l() local 647 hmac = ldns_key_new_frm_fp_hmac_l(fp, line_nr, &hmac_size); in ldns_key_new_frm_fp_l() 652 ldns_key_set_hmac_size(k, hmac_size); in ldns_key_new_frm_fp_l() 1022 ldns_key_new_frm_fp_hmac(FILE *f, size_t *hmac_size) in ldns_key_new_frm_fp_hmac() argument 1024 return ldns_key_new_frm_fp_hmac_l(f, NULL, hmac_size); in ldns_key_new_frm_fp_hmac() 1030 , size_t *hmac_size in ldns_key_new_frm_fp_hmac_l() argument 1037 *hmac_size = ldns_fget_keyword_data_l(f, "Key", ": ", d, "\n", in ldns_key_new_frm_fp_hmac_l() 1404 ldns_key_set_hmac_size(ldns_key *k, size_t hmac_size) in ldns_key_set_hmac_size() argument 1406 k->_key.hmac.size = hmac_size; in ldns_key_set_hmac_size()
|
/freebsd/crypto/openssl/providers/implementations/macs/ |
H A D | hmac_prov.c | 137 static size_t hmac_size(struct hmac_data_st *macctx) in hmac_size() function 261 && !OSSL_PARAM_set_size_t(p, hmac_size(macctx))) in hmac_get_ctx_params()
|