Lines Matching refs:data
17 * hmac_sha512_vector - HMAC-SHA512 over data vector (RFC 2104)
20 * @num_elem: Number of elements in the data vector
21 * @addr: Pointers to the data areas
22 * @len: Lengths of the data blocks
57 * and text is the data being protected */
92 * hmac_sha512 - HMAC-SHA512 over data buffer (RFC 2104)
95 * @data: Pointers to the data area
96 * @data_len: Length of the data area
100 int hmac_sha512(const u8 *key, size_t key_len, const u8 *data,
103 return hmac_sha512_vector(key, key_len, 1, &data, &data_len, mac);