[][src]Struct snow::params::NoiseParams

pub struct NoiseParams {
    pub name: String,
    pub base: BaseChoice,
    pub handshake: HandshakeChoice,
    pub dh: DHChoice,
    pub cipher: CipherChoice,
    pub hash: HashChoice,
}

The set of choices (as specified in the Noise spec) that constitute a full protocol definition.

See: Chapter 11: Protocol Names.

Examples

From a string definition:


let params: NoiseParams = "Noise_XX_25519_AESGCM_SHA256".parse().unwrap();

Fields

name: Stringbase: BaseChoicehandshake: HandshakeChoicedh: DHChoicecipher: CipherChoicehash: HashChoice

Methods

impl NoiseParams[src]

pub fn new(
    name: String,
    base: BaseChoice,
    handshake: HandshakeChoice,
    dh: DHChoice,
    cipher: CipherChoice,
    hash: HashChoice
) -> Self
[src]

Construct a new NoiseParams via specifying enums directly.

Trait Implementations

impl PartialEq<NoiseParams> for NoiseParams[src]

impl Clone for NoiseParams[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for NoiseParams[src]

impl FromStr for NoiseParams[src]

type Err = SnowError

The associated error which can be returned from parsing.

Auto Trait Implementations

impl Send for NoiseParams

impl Sync for NoiseParams

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Same for T

type Output = T

Should always be Self