HomeSort by relevance Sort by last modified time
    Searched defs:data_mac (Results 1 - 2 of 2) sorted by null

  /external/wpa_supplicant_8/src/crypto/
aes-eax.c 35 data_mac[AES_BLOCK_SIZE]; local
66 if (omac1_aes_128(key, buf, 16 + data_len, data_mac))
70 tag[i] = nonce_mac[i] ^ data_mac[i] ^ hdr_mac[i];
99 data_mac[AES_BLOCK_SIZE]; local
132 if (omac1_aes_128(key, buf, 16 + data_len, data_mac)) {
140 if (tag[i] != (nonce_mac[i] ^ data_mac[i] ^ hdr_mac[i]))
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
aes_wrap.c 351 u8 nonce_mac[BLOCK_SIZE], hdr_mac[BLOCK_SIZE], data_mac[BLOCK_SIZE]; local
382 if (omac1_aes_128(key, buf, 16 + data_len, data_mac))
386 tag[i] = nonce_mac[i] ^ data_mac[i] ^ hdr_mac[i];
414 u8 nonce_mac[BLOCK_SIZE], hdr_mac[BLOCK_SIZE], data_mac[BLOCK_SIZE]; local
447 if (omac1_aes_128(key, buf, 16 + data_len, data_mac)) {
455 if (tag[i] != (nonce_mac[i] ^ data_mac[i] ^ hdr_mac[i]))

Completed in 2879 milliseconds