Struct libp2p_noise::SecretKey [−][src]
pub struct SecretKey<T: Zeroize>(_);
DH secret key.
Implementations
impl SecretKey<X25519>
[src]
impl SecretKey<X25519>
[src]pub fn from_ed25519(ed25519_sk: &SecretKey) -> Self
[src]
Construct a X25519 secret key from a Ed25519 secret key.
Note: If the Ed25519 secret key is already used in the context of other cryptographic protocols outside of Noise, e.g. for signing in the
secio
protocol, it should be preferred to create a new keypair for use in the Noise protocol.See also:
Trait Implementations
impl From<SecretKey<X25519Spec>> for Keypair<X25519Spec>
[src]
impl From<SecretKey<X25519Spec>> for Keypair<X25519Spec>
[src]Promote a X25519 secret key into a keypair.
fn from(secret: SecretKey<X25519Spec>) -> Keypair<X25519Spec>
[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for SecretKey<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for SecretKey<T> where
T: Send,
T: Send,
impl<T> Sync for SecretKey<T> where
T: Sync,
T: Sync,
impl<T> Unpin for SecretKey<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for SecretKey<T> where
T: UnwindSafe,
T: UnwindSafe,