Struct keynesis::noise::TransportReceiveHalf[][src]

pub struct TransportReceiveHalf<H: Hash> { /* fields omitted */ }

Implementations

impl<H: Hash> TransportReceiveHalf<H>[src]

pub fn noise_session(&self) -> &H::HASH[src]

unique identifier of the noise session

pub fn remote_public_identity(&self) -> &PublicKey[src]

get the remote's public identity

pub fn count_received(&self) -> u64[src]

get the number of message received from the remote peer

this function will be a little tainted by the handshake state it also account for the number of times either encrypt or decrypt has been used during the handshake. This is because during the handshake the exchange is symmetrical while in the transport era the exchanges are asymmetrical.

pub fn receive(
    &mut self,
    input: impl AsRef<[u8]>,
    output: &mut [u8]
) -> Result<(), CipherStateError>
[src]

receive message from the remote peer

The output can have 16 bytes less than the input. This is because the MAC is appended in the input message so we can verify the message has not been tempered with.

Auto Trait Implementations

impl<H> RefUnwindSafe for TransportReceiveHalf<H> where
    <H as Hash>::HASH: RefUnwindSafe
[src]

impl<H> Send for TransportReceiveHalf<H> where
    <H as Hash>::HASH: Send
[src]

impl<H> Sync for TransportReceiveHalf<H> where
    <H as Hash>::HASH: Sync
[src]

impl<H> Unpin for TransportReceiveHalf<H> where
    <H as Hash>::HASH: Unpin
[src]

impl<H> UnwindSafe for TransportReceiveHalf<H> where
    <H as Hash>::HASH: UnwindSafe
[src]

Blanket Implementations

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

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

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

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 = Infallible

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<V, T> VZip<V> for T where
    V: MultiLane<T>,