pub struct AuthenticNoiseKeypair<T>where
T: Zeroize,{ /* private fields */ }
Expand description
A DH keypair that is authentic w.r.t. a [identity::PublicKey
].
Implementations
impl<T> AuthenticKeypair<T>where
T: Zeroize,
impl<T> AuthenticKeypair<T>where
T: Zeroize,
pub fn into_identity(self) -> KeypairIdentity
pub fn into_identity(self) -> KeypairIdentity
Extract the public [KeypairIdentity
] from this AuthenticKeypair
,
dropping the DH Keypair
.
Methods from Deref<Target = Keypair<T>>
Trait Implementations
impl<T> Clone for AuthenticKeypair<T>where
T: Clone + Zeroize,
impl<T> Clone for AuthenticKeypair<T>where
T: Clone + Zeroize,
fn clone(&self) -> AuthenticKeypair<T>
fn clone(&self) -> AuthenticKeypair<T>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl<T> Deref for AuthenticKeypair<T>where
T: Zeroize,
impl<T> Deref for AuthenticKeypair<T>where
T: Zeroize,
type Target = Keypair<T>
type Target = Keypair<T>
The resulting type after dereferencing.
fn deref(&self) -> &<AuthenticKeypair<T> as Deref>::Target
fn deref(&self) -> &<AuthenticKeypair<T> as Deref>::Target
Dereferences the value.
Auto Trait Implementations
impl<T> RefUnwindSafe for AuthenticKeypair<T>where
T: RefUnwindSafe,
impl<T> Send for AuthenticKeypair<T>where
T: Send,
impl<T> Sync for AuthenticKeypair<T>where
T: Sync,
impl<T> Unpin for AuthenticKeypair<T>where
T: Unpin,
impl<T> UnwindSafe for AuthenticKeypair<T>where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more