Rsne

Struct Rsne 

Source
pub struct Rsne {
    pub version: u16,
    pub group_data_cipher_suite: Option<Cipher>,
    pub pairwise_cipher_suites: Vec<Cipher>,
    pub akm_suites: Vec<Akm>,
    pub rsn_capabilities: Option<RsnCapabilities>,
    pub pmkids: Vec<Bytes>,
    pub group_mgmt_cipher_suite: Option<Cipher>,
}

Fields§

§version: u16§group_data_cipher_suite: Option<Cipher>§pairwise_cipher_suites: Vec<Cipher>§akm_suites: Vec<Akm>§rsn_capabilities: Option<RsnCapabilities>§pmkids: Vec<Bytes>§group_mgmt_cipher_suite: Option<Cipher>

Implementations§

Source§

impl Rsne

Source

pub fn wpa2_rsne() -> Self

Source

pub fn wpa2_rsne_with_caps(rsn_capabilities: RsnCapabilities) -> Self

Source

pub fn wpa2_wpa3_rsne() -> Self

Source

pub fn wpa2_wpa3_rsne_with_extra_caps(rsn_capabilities: RsnCapabilities) -> Self

Source

pub fn wpa3_rsne() -> Self

Source

pub fn wpa3_rsne_with_extra_caps(rsn_capabilities: RsnCapabilities) -> Self

Source

pub fn common_owe_rsne() -> Self

Common OWE configuration that works with most implementations.

There are multiple possible OWE RSNE variants, but this one is likely to be the one most used. For example, only CCMP-128 group and pairwise cipher is used here, but according to WPA3 and Wi-Fi Enhanced Open Deployment and Implementation Guide, on extremely-high throughput (EHT) deployments, the AP would also have GCMP-256 cipher

Source

pub fn derive_wpa2_s_rsne( &self, security_support: &SecuritySupport, ) -> Result<Self, Error>

Constructs Supplicant’s RSNE with: Group Data Cipher: same as A-RSNE (CCMP-128 or TKIP) Pairwise Cipher: best from A-RSNE (prefer CCMP-128 over TKIP) AKM: PSK

Source

pub fn derive_wpa3_s_rsne( &self, security_support: &SecuritySupport, ) -> Result<Rsne, Error>

Constructs Supplicant’s RSNE with: Group Data Cipher: CCMP-128 Pairwise Cipher: CCMP-128 AKM: SAE

Source

pub fn derive_owe_s_rsne( &self, security_support: &SecuritySupport, ) -> Result<Rsne, Error>

Constructs Supplicant’s RSNE with: Group Data Cipher: same as A-RSNE (CCMP-128 or GCMP-256) Pairwise Cipher: same as A-RSNE (prefer GCMP-256 > CCMP-128 > the rest) AKM: OWE

Source

pub fn ensure_valid_s_rsne(&self) -> Result<(), Error>

Validates this RSNE contains only one of each cipher type and only one AKM with a defined number of MIC bytes.

Source

pub fn is_valid_subset_of(&self, a_rsne: &Rsne) -> Result<bool, Error>

Verify that Supplicant RSNE is a subset of Authenticator RSNE

Source

pub fn len(&self) -> usize

IEEE Std. 802.11-2016 9.4.2.25.1 specifies lengths for all fields.

Source

pub fn into_bytes(self) -> Vec<u8>

Source

pub fn write_into<A: Append>(&self, buf: &mut A) -> Result<(), BufferTooSmall>

Source

pub fn is_wpa2_rsn_compatible(&self, security_support: &SecuritySupport) -> bool

Supported Ciphers and AKMs: Group Data Ciphers: CCMP-128, TKIP Pairwise Cipher: CCMP-128, TKIP AKM: PSK, SAE

Source

pub fn is_wpa3_rsn_compatible(&self, security_support: &SecuritySupport) -> bool

Check if this is a supported WPA3-Personal or WPA3-Personal transition AP per the WFA WPA3 specification. Supported Ciphers and AKMs: Group Data Ciphers: CCMP-128, TKIP Pairwise Cipher: CCMP-128 AKM: SAE (also PSK in transition mode) The MFPR bit is required, except for transition mode.

Source

pub fn is_owe_rsn_compatible(&self, security_support: &SecuritySupport) -> bool

Trait Implementations§

Source§

impl Clone for Rsne

Source§

fn clone(&self) -> Rsne

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Rsne

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Rsne

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl PartialEq for Rsne

Source§

fn eq(&self, other: &Rsne) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for Rsne

Source§

fn partial_cmp(&self, other: &Rsne) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl StructuralPartialEq for Rsne

Auto Trait Implementations§

§

impl Freeze for Rsne

§

impl RefUnwindSafe for Rsne

§

impl Send for Rsne

§

impl Sync for Rsne

§

impl Unpin for Rsne

§

impl UnwindSafe for Rsne

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T, D> Encode<Ambiguous1, D> for T
where D: ResourceDialect,

Source§

unsafe fn encode( self, _encoder: &mut Encoder<'_, D>, _offset: usize, _depth: Depth, ) -> Result<(), Error>

Encodes the object into the encoder’s buffers. Any handles stored in the object are swapped for Handle::INVALID. Read more
Source§

impl<T, D> Encode<Ambiguous2, D> for T
where D: ResourceDialect,

Source§

unsafe fn encode( self, _encoder: &mut Encoder<'_, D>, _offset: usize, _depth: Depth, ) -> Result<(), Error>

Encodes the object into the encoder’s buffers. Any handles stored in the object are swapped for Handle::INVALID. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> OptionalField for T
where T: ?Sized,

Source§

const PRESENT: Presence<Self> = _

Source§

const ABSENT: Presence<Self> = _

§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V