/external/wpa_supplicant_8/src/crypto/ |
aes-wrap.c | 14 #include "aes_wrap.h" 17 * aes_wrap - Wrap keys with AES Key Wrap Algorithm (RFC3394) 26 int aes_wrap(const u8 *kek, size_t kek_len, int n, const u8 *plain, u8 *cipher) function
|
aes_wrap.h | 21 int __must_check aes_wrap(const u8 *kek, size_t kek_len, int n, const u8 *plain,
|
crypto_module_tests.c | 13 #include "crypto/aes_wrap.h" 608 if (aes_wrap(kek41, sizeof(kek41), sizeof(plain41) / 8, plain41, 628 if (aes_wrap(kek42, sizeof(kek42), sizeof(plain42) / 8, plain42, 648 if (aes_wrap(kek43, sizeof(kek43), sizeof(plain43) / 8, plain43, 668 if (aes_wrap(kek44, sizeof(kek44), sizeof(plain44) / 8, plain44, 688 if (aes_wrap(kek45, sizeof(kek45), sizeof(plain45) / 8, plain45, 708 if (aes_wrap(kek46, sizeof(kek46), sizeof(plain46) / 8, plain46, [all...] |
crypto_openssl.c | 300 int aes_wrap(const u8 *kek, size_t kek_len, int n, const u8 *plain, u8 *cipher) function
|
/external/wpa_supplicant_8/src/ap/ |
wpa_auth_ft.c | 16 #include "crypto/aes_wrap.h" 334 /* aes_wrap() does not support inplace encryption, so use a temporary 348 if (aes_wrap(r0kh->key, sizeof(r0kh->key), 459 if (aes_wrap(sm->PTK.kek, sm->PTK.kek_len, key_len / 8, key, 492 if (aes_wrap(sm->PTK.kek, sm->PTK.kek_len, WPA_IGTK_LEN / 8, [all...] |
wpa_auth.c | 16 #include "crypto/aes_wrap.h" [all...] |
/external/wpa_supplicant_8/src/eap_server/ |
eap_server_fast.c | 12 #include "crypto/aes_wrap.h" 733 if (aes_wrap(data->pac_opaque_encr, sizeof(data->pac_opaque_encr), [all...] |
/external/wpa_supplicant_8/src/pae/ |
ieee802_1x_kay.c | 18 #include "crypto/aes_wrap.h" [all...] |