Struct libp2p_noise::AuthenticKeypair
source · pub struct AuthenticKeypair<T: Zeroize> { /* private fields */ }
Expand description
A DH keypair that is authentic w.r.t. a identity::PublicKey
.
Implementations§
source§impl<T: Zeroize> AuthenticKeypair<T>
impl<T: Zeroize> AuthenticKeypair<T>
sourcepub fn public_dh_key(&self) -> &PublicKey<T>
pub fn public_dh_key(&self) -> &PublicKey<T>
Returns the public DH key of this keypair.
sourcepub fn into_identity(self) -> KeypairIdentity
👎Deprecated since 0.40.0: This function was only used internally and will be removed in the future unless more usecases come up.
pub fn into_identity(self) -> KeypairIdentity
Extract the public KeypairIdentity
from this AuthenticKeypair
,
dropping the DH Keypair
.
Trait Implementations§
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§
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