Lines Matching defs:data
33 * @num_elem: Number of elements in the data vector
34 * @addr: Pointers to the data areas
35 * @len: Lengths of the data blocks
123 * @num_elem: Number of elements in the data vector
124 * @addr: Pointers to the data areas
125 * @len: Lengths of the data blocks
143 * @data: Data buffer for which a MAC is determined
144 * @data_len: Length of data buffer in bytes
152 int omac1_aes_128(const u8 *key, const u8 *data, size_t data_len, u8 *mac)
154 return omac1_aes_128_vector(key, 1, &data, &data_len, mac);
161 * @data: Data buffer for which a MAC is determined
162 * @data_len: Length of data buffer in bytes
170 int omac1_aes_256(const u8 *key, const u8 *data, size_t data_len, u8 *mac)
172 return omac1_aes_vector(key, 32, 1, &data, &data_len, mac);