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 171 size_t crypt_len; local
180 crypt_len = iv_c_len - AES_BLOCK_SIZE;
190 _len[num_elem] = crypt_len;
193 os_memcpy(out, iv_crypt + AES_BLOCK_SIZE, crypt_len);
198 ret = aes_ctr_encrypt(k2, key_len, iv, out, crypt_len);
  /external/wpa_supplicant_8/wpa_supplicant/
mesh_rsn.c 624 size_t crypt_len; local
656 crypt_len = elems_len - (elems->mic - start);
657 if (crypt_len < 2 + AES_BLOCK_SIZE) {
663 crypt = os_zalloc(crypt_len);
670 os_memcpy(crypt, elems->mic, crypt_len);
672 if (aes_siv_decrypt(sta->aek, sizeof(sta->aek), crypt, crypt_len, 3,
679 crypt_len -= AES_BLOCK_SIZE;
681 ampe_buf, crypt_len);
687 (size_t) 2 + ampe_ie_len > crypt_len ||

Completed in 937 milliseconds