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

  /external/wpa_supplicant_8/src/crypto/
aes-siv.c 170 size_t crypt_len; local
179 crypt_len = iv_c_len - AES_BLOCK_SIZE;
189 _len[num_elem] = crypt_len;
192 os_memcpy(out, iv_crypt + AES_BLOCK_SIZE, crypt_len);
197 ret = aes_ctr_encrypt(k2, key_len, iv, out, crypt_len);
  /external/wpa_supplicant_8/wpa_supplicant/
mesh_rsn.c 643 size_t crypt_len; local
677 crypt_len = elems_len - (elems->mic - start);
678 if (crypt_len < 2 + AES_BLOCK_SIZE) {
684 crypt = os_zalloc(crypt_len);
691 os_memcpy(crypt, elems->mic, crypt_len);
693 if (aes_siv_decrypt(sta->aek, sizeof(sta->aek), crypt, crypt_len, 3,
700 crypt_len -= AES_BLOCK_SIZE;
702 ampe_buf, crypt_len);
708 (size_t) 2 + ampe_ie_len > crypt_len ||

Completed in 461 milliseconds