fix(esp_wifi): Set PMK after SAE exchange

This commit is contained in:
Kapil Gupta 2024-09-26 19:50:40 +05:30 committed by BOT
parent 0ddb785147
commit 4acdc6c830

View File

@ -1570,6 +1570,7 @@ static int sae_derive_keys(struct sae_data *sae, const u8 *k)
os_memcpy(sae->tmp->kck, keys, hash_len);
sae->tmp->kck_len = hash_len;
os_memcpy(sae->pmk, keys + hash_len, SAE_PMK_LEN);
sae->pmk_len = SAE_PMK_LEN;
os_memcpy(sae->pmkid, val, SAE_PMKID_LEN);
#ifdef CONFIG_SAE_PK