pub struct IK<DH, H, RNG, S>where
H: Hash,{ /* private fields */ }
Expand description
Interactive Handshake Noise IK
Implementations§
Source§impl<DH, H, RNG> IK<DH, H, RNG, SendB>
impl<DH, H, RNG> IK<DH, H, RNG, SendB>
pub fn remote_public_identity(&self) -> &PublicKey
pub fn reply( self, output: impl Write, ) -> Result<TransportState<H>, HandshakeStateError>
Auto Trait Implementations§
impl<DH, H, RNG, S> Freeze for IK<DH, H, RNG, S>
impl<DH, H, RNG, S> RefUnwindSafe for IK<DH, H, RNG, S>where
S: RefUnwindSafe,
RNG: RefUnwindSafe,
<H as Hash>::HASH: RefUnwindSafe,
H: RefUnwindSafe,
DH: RefUnwindSafe,
impl<DH, H, RNG, S> Send for IK<DH, H, RNG, S>
impl<DH, H, RNG, S> Sync for IK<DH, H, RNG, S>
impl<DH, H, RNG, S> Unpin for IK<DH, H, RNG, S>
impl<DH, H, RNG, S> UnwindSafe for IK<DH, H, RNG, S>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more