esp_idf_sys

Type Alias protocomm_security2_params_t

Source
pub type protocomm_security2_params_t = protocomm_security2_params;
Expand description

@brief Protocomm Security 2 parameters: Salt and Verifier

Aliased Type§

struct protocomm_security2_params_t {
    pub salt: *const i8,
    pub salt_len: u16,
    pub verifier: *const i8,
    pub verifier_len: u16,
}

Fields§

§salt: *const i8

Pointer to the buffer containing the salt

§salt_len: u16

Length (in bytes) of the salt

§verifier: *const i8

Pointer to the buffer containing the verifier

§verifier_len: u16

Length (in bytes) of the verifier

Trait Implementations

Source§

impl Clone for protocomm_security2_params

Source§

fn clone(&self) -> protocomm_security2_params

Returns a copy of the value. Read more
1.0.0§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for protocomm_security2_params

Source§

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

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

impl Default for protocomm_security2_params

Source§

fn default() -> Self

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

impl Copy for protocomm_security2_params