Searched defs:kek (Results 1 - 16 of 16) sorted by relevance

/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes-unwrap.c18 * @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 Daes-wrap.c18 * @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);
/external/wpa_supplicant_8/src/crypto/
H A Daes-unwrap.c18 * @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 Daes-wrap.c18 * @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);
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Daes-unwrap.c18 * @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 Daes-wrap.c18 * @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);
/external/chromium_org/third_party/openssl/openssl/crypto/aes/
H A Daes_wrap.c143 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/openssl/crypto/aes/
H A Daes_wrap.c143 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_8/wpa_supplicant/
H A Dwpas_glue.c838 static void wpa_supplicant_set_rekey_offload(void *ctx, const u8 *kek, argument
844 wpa_drv_set_rekey_info(wpa_s, kek, kck, replay_ctr);
H A Ddriver_i.h679 const u8 *kek, const u8 *kck,
684 wpa_s->driver->set_rekey_info(wpa_s->drv_priv, kek, kck, replay_ctr);
678 wpa_drv_set_rekey_info(struct wpa_supplicant *wpa_s, const u8 *kek, const u8 *kck, const u8 *replay_ctr) argument
/external/wpa_supplicant_8/hostapd/src/common/
H A Dwpa_common.h185 u8 kek[16]; /* EAPOL-Key Key Encryption Key (KEK) */ member in struct:wpa_ptk
/external/wpa_supplicant_8/src/common/
H A Dwpa_common.h185 u8 kek[16]; /* EAPOL-Key Key Encryption Key (KEK) */ member in struct:wpa_ptk
/external/wpa_supplicant_8/wpa_supplicant/src/common/
H A Dwpa_common.h185 u8 kek[16]; /* EAPOL-Key Key Encryption Key (KEK) */ member in struct:wpa_ptk
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Ddriver_nl80211.c10204 static void nl80211_set_rekey_info(void *priv, const u8 *kek, const u8 *kck, argument
10224 NLA_PUT(msg, NL80211_REKEY_DATA_KEK, NL80211_KEK_LEN, kek);
/external/wpa_supplicant_8/src/drivers/
H A Ddriver_nl80211.c10204 static void nl80211_set_rekey_info(void *priv, const u8 *kek, const u8 *kck, argument
10224 NLA_PUT(msg, NL80211_REKEY_DATA_KEK, NL80211_KEK_LEN, kek);
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/
H A Ddriver_nl80211.c10204 static void nl80211_set_rekey_info(void *priv, const u8 *kek, const u8 *kck, argument
10224 NLA_PUT(msg, NL80211_REKEY_DATA_KEK, NL80211_KEK_LEN, kek);

Completed in 215 milliseconds