[−][src]Struct libp2p_noise::NoiseConfig
The protocol upgrade configuration.
Methods
impl<C: Protocol<C> + Zeroize> NoiseConfig<IX, C>
[src]
impl<C: Protocol<C> + Zeroize> NoiseConfig<XX, C>
[src]
impl<C: Protocol<C> + Zeroize> NoiseConfig<IK, C>
[src]
pub fn ik_listener(keys: Keypair<C>) -> Self
[src]
Create a new NoiseConfig
for the IK handshake pattern (recipient side).
impl<C: Protocol<C> + Zeroize> NoiseConfig<IK, C, PublicKey<C>>
[src]
pub fn ik_dialer(keys: Keypair<C>, remote: PublicKey<C>) -> Self
[src]
Create a new NoiseConfig
for the IK handshake pattern (initiator side).
Trait Implementations
impl<P: Clone, C: Clone + Zeroize, R: Clone> Clone for NoiseConfig<P, C, R>
[src]
fn clone(&self) -> NoiseConfig<P, C, R>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<T, C> OutboundUpgrade<T> for NoiseConfig<IX, C> where
T: AsyncRead + AsyncWrite,
NoiseConfig<IX, C>: UpgradeInfo,
C: Protocol<C> + AsRef<[u8]> + Zeroize,
[src]
T: AsyncRead + AsyncWrite,
NoiseConfig<IX, C>: UpgradeInfo,
C: Protocol<C> + AsRef<[u8]> + Zeroize,
type Output = (PublicKey<C>, NoiseOutput<T>)
Output after the upgrade has been successfully negotiated and the handshake performed.
type Error = NoiseError
Possible error during the handshake.
type Future = NoiseOutboundFuture<T, C>
Future that performs the handshake with the remote.
fn upgrade_outbound(self, socket: T, _: Self::Info) -> Self::Future
[src]
impl<T, C> OutboundUpgrade<T> for NoiseConfig<XX, C> where
T: AsyncRead + AsyncWrite,
NoiseConfig<XX, C>: UpgradeInfo,
C: Protocol<C> + AsRef<[u8]> + Zeroize,
[src]
T: AsyncRead + AsyncWrite,
NoiseConfig<XX, C>: UpgradeInfo,
C: Protocol<C> + AsRef<[u8]> + Zeroize,
type Output = (PublicKey<C>, NoiseOutput<T>)
Output after the upgrade has been successfully negotiated and the handshake performed.
type Error = NoiseError
Possible error during the handshake.
type Future = NoiseOutboundFuture<T, C>
Future that performs the handshake with the remote.
fn upgrade_outbound(self, socket: T, _: Self::Info) -> Self::Future
[src]
impl<T, C> OutboundUpgrade<T> for NoiseConfig<IK, C, PublicKey<C>> where
T: AsyncRead + AsyncWrite,
NoiseConfig<IK, C, PublicKey<C>>: UpgradeInfo,
C: Protocol<C> + AsRef<[u8]> + Zeroize,
[src]
T: AsyncRead + AsyncWrite,
NoiseConfig<IK, C, PublicKey<C>>: UpgradeInfo,
C: Protocol<C> + AsRef<[u8]> + Zeroize,
type Output = (PublicKey<C>, NoiseOutput<T>)
Output after the upgrade has been successfully negotiated and the handshake performed.
type Error = NoiseError
Possible error during the handshake.
type Future = NoiseOutboundFuture<T, C>
Future that performs the handshake with the remote.
fn upgrade_outbound(self, socket: T, _: Self::Info) -> Self::Future
[src]
impl<T, C> InboundUpgrade<T> for NoiseConfig<IX, C> where
T: AsyncRead + AsyncWrite,
NoiseConfig<IX, C>: UpgradeInfo,
C: Protocol<C> + AsRef<[u8]> + Zeroize,
[src]
T: AsyncRead + AsyncWrite,
NoiseConfig<IX, C>: UpgradeInfo,
C: Protocol<C> + AsRef<[u8]> + Zeroize,
type Output = (PublicKey<C>, NoiseOutput<T>)
Output after the upgrade has been successfully negotiated and the handshake performed.
type Error = NoiseError
Possible error during the handshake.
type Future = NoiseInboundFuture<T, C>
Future that performs the handshake with the remote.
fn upgrade_inbound(self, socket: T, _: Self::Info) -> Self::Future
[src]
impl<T, C> InboundUpgrade<T> for NoiseConfig<XX, C> where
T: AsyncRead + AsyncWrite,
NoiseConfig<XX, C>: UpgradeInfo,
C: Protocol<C> + AsRef<[u8]> + Zeroize,
[src]
T: AsyncRead + AsyncWrite,
NoiseConfig<XX, C>: UpgradeInfo,
C: Protocol<C> + AsRef<[u8]> + Zeroize,
type Output = (PublicKey<C>, NoiseOutput<T>)
Output after the upgrade has been successfully negotiated and the handshake performed.
type Error = NoiseError
Possible error during the handshake.
type Future = NoiseInboundFuture<T, C>
Future that performs the handshake with the remote.
fn upgrade_inbound(self, socket: T, _: Self::Info) -> Self::Future
[src]
impl<T, C> InboundUpgrade<T> for NoiseConfig<IK, C> where
T: AsyncRead + AsyncWrite,
NoiseConfig<IK, C>: UpgradeInfo,
C: Protocol<C> + AsRef<[u8]> + Zeroize,
[src]
T: AsyncRead + AsyncWrite,
NoiseConfig<IK, C>: UpgradeInfo,
C: Protocol<C> + AsRef<[u8]> + Zeroize,
type Output = (PublicKey<C>, NoiseOutput<T>)
Output after the upgrade has been successfully negotiated and the handshake performed.
type Error = NoiseError
Possible error during the handshake.
type Future = NoiseInboundFuture<T, C>
Future that performs the handshake with the remote.
fn upgrade_inbound(self, socket: T, _: Self::Info) -> Self::Future
[src]
impl UpgradeInfo for NoiseConfig<IX, X25519>
[src]
type Info = &'static [u8]
Opaque type representing a negotiable protocol.
type InfoIter = Once<Self::Info>
Iterator returned by protocol_info
.
fn protocol_info(&self) -> Self::InfoIter
[src]
impl UpgradeInfo for NoiseConfig<XX, X25519>
[src]
type Info = &'static [u8]
Opaque type representing a negotiable protocol.
type InfoIter = Once<Self::Info>
Iterator returned by protocol_info
.
fn protocol_info(&self) -> Self::InfoIter
[src]
impl UpgradeInfo for NoiseConfig<IK, X25519>
[src]
type Info = &'static [u8]
Opaque type representing a negotiable protocol.
type InfoIter = Once<Self::Info>
Iterator returned by protocol_info
.
fn protocol_info(&self) -> Self::InfoIter
[src]
impl UpgradeInfo for NoiseConfig<IK, X25519, PublicKey<X25519>>
[src]
type Info = &'static [u8]
Opaque type representing a negotiable protocol.
type InfoIter = Once<Self::Info>
Iterator returned by protocol_info
.
fn protocol_info(&self) -> Self::InfoIter
[src]
Auto Trait Implementations
impl<P, C, R> Send for NoiseConfig<P, C, R> where
C: Send,
P: Send,
R: Send,
C: Send,
P: Send,
R: Send,
impl<P, C, R> Sync for NoiseConfig<P, C, R> where
C: Sync,
P: Sync,
R: Sync,
C: Sync,
P: Sync,
R: Sync,
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T> From for T
[src]
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Same for T
type Output = T
Should always be Self
impl<C, U> InboundUpgradeExt for U where
U: InboundUpgrade<C>,
[src]
U: InboundUpgrade<C>,
fn map_inbound<F, T>(self, f: F) -> MapInboundUpgrade<Self, F> where
F: FnOnce(Self::Output) -> T,
[src]
F: FnOnce(Self::Output) -> T,
Returns a new object that wraps around Self
and applies a closure to the Output
.
fn map_inbound_err<F, T>(self, f: F) -> MapInboundUpgradeErr<Self, F> where
F: FnOnce(Self::Error) -> T,
[src]
F: FnOnce(Self::Error) -> T,
Returns a new object that wraps around Self
and applies a closure to the Error
.
impl<C, U> OutboundUpgradeExt for U where
U: OutboundUpgrade<C>,
[src]
U: OutboundUpgrade<C>,
fn map_outbound<F, T>(self, f: F) -> MapOutboundUpgrade<Self, F> where
F: FnOnce(Self::Output) -> T,
[src]
F: FnOnce(Self::Output) -> T,
Returns a new object that wraps around Self
and applies a closure to the Output
.
fn map_outbound_err<F, T>(self, f: F) -> MapOutboundUpgradeErr<Self, F> where
F: FnOnce(Self::Error) -> T,
[src]
F: FnOnce(Self::Error) -> T,
Returns a new object that wraps around Self
and applies a closure to the Error
.