Type Alias wlan_common::security::wpa::WpaDescriptor
source · pub type WpaDescriptor = Wpa<()>;
Expand description
WPA descriptor.
Describes the configuration of the WPA security protocol. WPA descriptors optionally specify a pairwise cipher. Descriptors that lack this information are simply less specific than descriptors that include it.
Aliased Type§
enum WpaDescriptor {
Wpa1 {
credentials: (),
},
Wpa2 {
cipher: Option<Wpa2Cipher>,
authentication: Authentication,
},
Wpa3 {
cipher: Option<Wpa3Cipher>,
authentication: Authentication,
},
}