Home | History | Annotate | Download | only in crypto

Lines Matching refs:hdr_len

22  * @hdr_len: Length of the header data bytes
29 const u8 *hdr, size_t hdr_len,
42 if (hdr_len > buf_len)
43 buf_len = hdr_len;
58 os_memcpy(buf + 16, hdr, hdr_len);
59 if (omac1_aes_128(key, buf, 16 + hdr_len, hdr_mac))
86 * @hdr_len: Length of the header data bytes
93 const u8 *hdr, size_t hdr_len,
106 if (hdr_len > buf_len)
107 buf_len = hdr_len;
124 os_memcpy(buf + 16, hdr, hdr_len);
125 if (omac1_aes_128(key, buf, 16 + hdr_len, hdr_mac)) {