/external/wpa_supplicant_8/hostapd/src/crypto/ |
H A D | aes-unwrap.c | 18 * @kek: Key encryption key (KEK) 25 int aes_unwrap(const u8 *kek, int n, const u8 *cipher, u8 *plain) argument 36 ctx = aes_decrypt_init(kek, 16);
|
H A D | aes-wrap.c | 18 * @kek: 16-octet Key encryption key (KEK) 25 int aes_wrap(const u8 *kek, int n, const u8 *plain, u8 *cipher) argument 38 ctx = aes_encrypt_init(kek, 16);
|
H A D | aes_wrap.h | 19 int __must_check aes_wrap(const u8 *kek, int n, const u8 *plain, u8 *cipher); 20 int __must_check aes_unwrap(const u8 *kek, int n, const u8 *cipher, u8 *plain);
|
/external/wpa_supplicant_8/src/crypto/ |
H A D | aes-unwrap.c | 18 * @kek: Key encryption key (KEK) 25 int aes_unwrap(const u8 *kek, int n, const u8 *cipher, u8 *plain) argument 36 ctx = aes_decrypt_init(kek, 16);
|
H A D | aes-wrap.c | 18 * @kek: 16-octet Key encryption key (KEK) 25 int aes_wrap(const u8 *kek, int n, const u8 *plain, u8 *cipher) argument 38 ctx = aes_encrypt_init(kek, 16);
|
H A D | aes_wrap.h | 19 int __must_check aes_wrap(const u8 *kek, int n, const u8 *plain, u8 *cipher); 20 int __must_check aes_unwrap(const u8 *kek, int n, const u8 *cipher, u8 *plain);
|
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/ |
H A D | aes-unwrap.c | 18 * @kek: Key encryption key (KEK) 25 int aes_unwrap(const u8 *kek, int n, const u8 *cipher, u8 *plain) argument 36 ctx = aes_decrypt_init(kek, 16);
|
H A D | aes-wrap.c | 18 * @kek: 16-octet Key encryption key (KEK) 25 int aes_wrap(const u8 *kek, int n, const u8 *plain, u8 *cipher) argument 38 ctx = aes_encrypt_init(kek, 16);
|
H A D | aes_wrap.h | 19 int __must_check aes_wrap(const u8 *kek, int n, const u8 *plain, u8 *cipher); 20 int __must_check aes_unwrap(const u8 *kek, int n, const u8 *cipher, u8 *plain);
|
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/ |
H A D | aes_wrap.h | 25 int __must_check aes_wrap(const u8 *kek, int n, const u8 *plain, u8 *cipher); 26 int __must_check aes_unwrap(const u8 *kek, int n, const u8 *cipher, u8 *plain);
|
H A D | aes_wrap.c | 32 * @kek: 16-octet Key encryption key (KEK) 39 int aes_wrap(const u8 *kek, int n, const u8 *plain, u8 *cipher) argument 52 ctx = aes_encrypt_init(kek, 16); 93 * @kek: Key encryption key (KEK) 100 int aes_unwrap(const u8 *kek, int n, const u8 *cipher, u8 *plain) argument 111 ctx = aes_decrypt_init(kek, 16);
|
/external/openssl/crypto/aes/ |
H A D | aes_wrap.c | 143 int AES_wrap_unwrap_test(const unsigned char *kek, int keybits, argument 155 if (AES_set_encrypt_key(kek, keybits, &wctx)) 164 if (AES_set_decrypt_key(kek, keybits, &wctx)) 188 static const unsigned char kek[] = { local 244 ret = AES_wrap_unwrap_test(kek, 128, NULL, e1, key, 16); 246 ret = AES_wrap_unwrap_test(kek, 192, NULL, e2, key, 16); 248 ret = AES_wrap_unwrap_test(kek, 256, NULL, e3, key, 16); 250 ret = AES_wrap_unwrap_test(kek, 192, NULL, e4, key, 24); 252 ret = AES_wrap_unwrap_test(kek, 256, NULL, e5, key, 24); 254 ret = AES_wrap_unwrap_test(kek, 25 [all...] |
/external/wpa_supplicant_6/wpa_supplicant/tests/ |
H A D | test_aes.c | 233 u8 kek[] = { local 251 if (aes_wrap(kek, 2, plain, result)) { 259 if (aes_unwrap(kek, 2, crypt, result)) {
|
/external/wpa_supplicant_6/wpa_supplicant/src/common/ |
H A D | wpa_common.h | 169 u8 kek[16]; /* EAPOL-Key Key Encryption Key (KEK) */ member in struct:wpa_ptk
|
/external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/ |
H A D | wpa_ft.c | 616 if (aes_unwrap(sm->ptk.kek, gtk_len / 8, gtk_elem + 10, gtk)) { 707 if (aes_unwrap(sm->ptk.kek, WPA_IGTK_LEN / 8, igtk_elem + 9, igtk)) {
|
/external/wpa_supplicant_8/wpa_supplicant/ |
H A D | driver_i.h | 662 const u8 *kek, const u8 *kck, 667 wpa_s->driver->set_rekey_info(wpa_s->drv_priv, kek, kck, replay_ctr); 661 wpa_drv_set_rekey_info(struct wpa_supplicant *wpa_s, const u8 *kek, const u8 *kck, const u8 *replay_ctr) argument
|
H A D | wpas_glue.c | 768 static void wpa_supplicant_set_rekey_offload(void *ctx, const u8 *kek, argument 774 wpa_drv_set_rekey_info(wpa_s, kek, kck, replay_ctr);
|
/external/wpa_supplicant_8/hostapd/src/common/ |
H A D | wpa_common.h | 171 u8 kek[16]; /* EAPOL-Key Key Encryption Key (KEK) */ member in struct:wpa_ptk
|
/external/wpa_supplicant_8/hostapd/src/rsn_supp/ |
H A D | wpa.h | 63 void (*set_rekey_offload)(void *ctx, const u8 *kek, const u8 *kck,
|
H A D | wpa_i.h | 254 sm->ctx->set_rekey_offload(sm->ctx->ctx, sm->ptk.kek,
|
/external/wpa_supplicant_8/src/common/ |
H A D | wpa_common.h | 171 u8 kek[16]; /* EAPOL-Key Key Encryption Key (KEK) */ member in struct:wpa_ptk
|
/external/wpa_supplicant_8/src/rsn_supp/ |
H A D | wpa.h | 63 void (*set_rekey_offload)(void *ctx, const u8 *kek, const u8 *kck,
|
H A D | wpa_i.h | 254 sm->ctx->set_rekey_offload(sm->ctx->ctx, sm->ptk.kek,
|
/external/wpa_supplicant_8/wpa_supplicant/src/common/ |
H A D | wpa_common.h | 171 u8 kek[16]; /* EAPOL-Key Key Encryption Key (KEK) */ member in struct:wpa_ptk
|
/external/wpa_supplicant_8/wpa_supplicant/src/rsn_supp/ |
H A D | wpa.h | 63 void (*set_rekey_offload)(void *ctx, const u8 *kek, const u8 *kck,
|