diff options
author | Jouni Malinen <j@w1.fi> | 2014-10-18 10:02:02 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2014-10-18 10:02:02 (GMT) |
commit | bc26ac50dde37e505c66abaa5dfade41bd533a88 (patch) | |
tree | 6a0db3cf94b621b890958f48886b0d74e3183aab /wpa_supplicant/ibss_rsn.c | |
parent | f2991170937d1c90e1261fae692e0c1cbc70b6a9 (diff) | |
download | hostap-bc26ac50dde37e505c66abaa5dfade41bd533a88.zip hostap-bc26ac50dde37e505c66abaa5dfade41bd533a88.tar.gz hostap-bc26ac50dde37e505c66abaa5dfade41bd533a88.tar.bz2 |
SAE: Add support for PMKSA caching on the station side
This makes wpa_supplicant SME create PMKSA cache entries from SAE
authentication and try to use PMKSA caching if an entry is found for the
AP. If the AP rejects the attempt, fall back to SAE authentication is
used.
Signed-off-by: Jouni Malinen <j@w1.fi>
Diffstat (limited to 'wpa_supplicant/ibss_rsn.c')
-rw-r--r-- | wpa_supplicant/ibss_rsn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wpa_supplicant/ibss_rsn.c b/wpa_supplicant/ibss_rsn.c index 3083dd8..0e487d2 100644 --- a/wpa_supplicant/ibss_rsn.c +++ b/wpa_supplicant/ibss_rsn.c @@ -230,7 +230,7 @@ static int ibss_rsn_supp_init(struct ibss_rsn_peer *peer, const u8 *own_addr, wpa_sm_set_param(peer->supp, WPA_PARAM_PAIRWISE, WPA_CIPHER_CCMP); wpa_sm_set_param(peer->supp, WPA_PARAM_GROUP, WPA_CIPHER_CCMP); wpa_sm_set_param(peer->supp, WPA_PARAM_KEY_MGMT, WPA_KEY_MGMT_PSK); - wpa_sm_set_pmk(peer->supp, psk, PMK_LEN); + wpa_sm_set_pmk(peer->supp, psk, PMK_LEN, NULL); peer->supp_ie_len = sizeof(peer->supp_ie); if (wpa_sm_set_assoc_wpa_ie_default(peer->supp, peer->supp_ie, |