pub struct NoiseConfig { /* private fields */ }
Expand description

A key holder structure used for both initiators and responders.

Implementations§

source§

impl NoiseConfig

source

pub fn new(private_key: PrivateKey) -> Self

A peer must create a NoiseConfig through this function before being able to connect with other peers.

source

pub fn public_key(&self) -> PublicKey

Handy getter to access the configuration’s public key

source

pub fn initiate_connection( &self, rng: &mut impl RngCore + CryptoRng, prologue: &[u8], remote_public: PublicKey, payload: Option<&[u8]>, response_buffer: &mut [u8] ) -> Result<InitiatorHandshakeState, NoiseError>

An initiator can use this function to initiate a handshake with a known responder.

source

pub fn finalize_connection( &self, handshake_state: InitiatorHandshakeState, received_message: &[u8] ) -> Result<(Vec<u8>, NoiseSession), NoiseError>

A client can call this to finalize a connection, after receiving an answer from a server.

source

pub fn parse_client_init_message( &self, prologue: &[u8], received_message: &[u8] ) -> Result<(PublicKey, ResponderHandshakeState, Vec<u8>), NoiseError>

A responder can accept a connection by first parsing an initiator message. The function respond_to_client is usually called after this to respond to the initiator.

source

pub fn respond_to_client( &self, rng: &mut impl RngCore + CryptoRng, handshake_state: ResponderHandshakeState, payload: Option<&[u8]>, response_buffer: &mut [u8] ) -> Result<NoiseSession, NoiseError>

A responder can respond to an initiator by calling this function with the state obtained, after calling parse_client_init_message

source

pub fn respond_to_client_and_finalize( &self, rng: &mut impl RngCore + CryptoRng, prologue: &[u8], received_message: &[u8], payload: Option<&[u8]>, response_buffer: &mut [u8] ) -> Result<(Vec<u8>, NoiseSession), NoiseError>

This function is a one-call that replaces calling the two functions parse_client_init_message and respond_to_client consecutively

Trait Implementations§

source§

impl Debug for NoiseConfig

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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> Same<T> for T

§

type Output = T

Should always be Self
source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
§

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

§

fn vzip(self) -> V