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

  /external/wpa_supplicant_8/src/crypto/
aes-omac1.c 104 * omac1_aes_128 - One-Key CBC MAC (OMAC1) hash with AES-128 (aka AES-CMAC)
115 int omac1_aes_128(const u8 *key, const u8 *data, size_t data_len, u8 *mac) function
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
aes_wrap.c 245 * omac1_aes_128 - One-Key CBC MAC (OMAC1) hash with AES-128 (aka AES-CMAC)
256 int omac1_aes_128(const u8 *key, const u8 *data, size_t data_len, u8 *mac) function
370 if (omac1_aes_128(key, buf, 16 + nonce_len, nonce_mac))
375 if (omac1_aes_128(key, buf, 16 + hdr_len, hdr_mac))
382 if (omac1_aes_128(key, buf, 16 + data_len, data_mac))
433 if (omac1_aes_128(key, buf, 16 + nonce_len, nonce_mac)) {
440 if (omac1_aes_128(key, buf, 16 + hdr_len, hdr_mac)) {
447 if (omac1_aes_128(key, buf, 16 + data_len, data_mac)) {

Completed in 71 milliseconds