[][src]Struct snow::StatelessTransportState

pub struct StatelessTransportState { /* fields omitted */ }

A state machine encompassing the transport phase of a Noise session, using the two CipherStates (for sending and receiving) that were spawned from the SymmetricState's Split() method, called after a handshake has been finished.

See: http://noiseprotocol.org/noise.html#the-handshakestate-object

Methods

impl StatelessTransportState[src]

pub fn get_remote_static(&self) -> Option<&[u8]>[src]

Get the remote party's static public key, if available.

Note: will return None if either the chosen Noise pattern doesn't necessitate a remote static key, or if the remote static key is not yet known (as can be the case in the XX pattern, for example).

pub fn write_message(
    &self,
    nonce: u64,
    payload: &[u8],
    message: &mut [u8]
) -> Result<usize, Error>
[src]

Construct a message from payload (and pending handshake tokens if in handshake state), and writes it to the output buffer.

Returns the size of the written payload.

Errors

Will result in Error::Input if the size of the output exceeds the max message length in the Noise Protocol (65535 bytes).

pub fn read_message(
    &self,
    nonce: u64,
    payload: &[u8],
    message: &mut [u8]
) -> Result<usize, Error>
[src]

Reads a noise message from input

Returns the size of the payload written to payload.

Errors

Will result in Error::Decrypt if the contents couldn't be decrypted and/or the authentication tag didn't verify.

Panics

This function will panic if there is no key.

pub fn rekey_outgoing(&mut self)[src]

Generates a new key for the egress symmetric cipher according to Section 4.2 of the Noise Specification. Synchronizing timing of rekey between initiator and responder is the responsibility of the application, as described in Section 11.3 of the Noise Specification.

pub fn rekey_incoming(&mut self)[src]

Generates a new key for the ingress symmetric cipher according to Section 4.2 of the Noise Specification. Synchronizing timing of rekey between initiator and responder is the responsibility of the application, as described in Section 11.3 of the Noise Specification.

pub fn rekey_manually(
    &mut self,
    initiator: Option<&[u8]>,
    responder: Option<&[u8]>
)
[src]

Set a new key for the one or both of the initiator-egress and responder-egress symmetric ciphers.

pub fn rekey_initiator_manually(&mut self, key: &[u8])[src]

Set a new key for the initiator-egress symmetric cipher.

pub fn rekey_responder_manually(&mut self, key: &[u8])[src]

Set a new key for the responder-egress symmetric cipher.

pub fn is_initiator(&self) -> bool[src]

Check if this session was started with the "initiator" role.

Trait Implementations

impl Debug for StatelessTransportState[src]

impl TryFrom<HandshakeState> for StatelessTransportState[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

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

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

type Error = !

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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