SAE: Add support for using the optional Password Identifier
This extends the SAE implementation in both infrastructure and mesh BSS cases to allow an optional Password Identifier to be used. This uses the mechanism added in P802.11REVmd/D1.0. The Password Identifier is configured in a wpa_supplicant network profile as a new string parameter sae_password_id. In hostapd configuration, the existing sae_password parameter has been extended to allow the password identifier (and also a peer MAC address) to be set. In addition, multiple sae_password entries can now be provided to hostapd to allow multiple per-peer and per-identifier passwords to be set. Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
This commit is contained in:
parent
d6a65a83fb
commit
9be19d0b9c
18 changed files with 365 additions and 61 deletions
|
@ -193,6 +193,14 @@ struct wpa_ssid {
|
|||
*/
|
||||
char *sae_password;
|
||||
|
||||
/**
|
||||
* sae_password_id - SAE password identifier
|
||||
*
|
||||
* This parameter can be used to identify a specific SAE password. If
|
||||
* not included, the default SAE password is used instead.
|
||||
*/
|
||||
char *sae_password_id;
|
||||
|
||||
/**
|
||||
* ext_psk - PSK/passphrase name in external storage
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue