Struct x25519_dalek::EphemeralSecret [−][src]
pub struct EphemeralSecret(_);
Expand description
A short-lived Diffie-Hellman secret key that can only be used to compute a single
SharedSecret
.
This type is identical to the StaticSecret
type, except that the
EphemeralSecret::diffie_hellman
method consumes and then wipes the secret key, and there
are no serialization methods defined. This means that EphemeralSecret
s can only be
generated from fresh randomness by EphemeralSecret::new
and the compiler statically checks
that the resulting secret is used at most once.
Implementations
impl EphemeralSecret
[src]
impl EphemeralSecret
[src]pub fn diffie_hellman(self, their_public: &PublicKey) -> SharedSecret
[src]
pub fn diffie_hellman(self, their_public: &PublicKey) -> SharedSecret
[src]Perform a Diffie-Hellman key agreement between self
and
their_public
key to produce a SharedSecret
.
pub fn new<T: RngCore + CryptoRng>(csprng: T) -> Self
[src]
pub fn new<T: RngCore + CryptoRng>(csprng: T) -> Self
[src]Generate an x25519 EphemeralSecret
key.
Trait Implementations
impl Drop for EphemeralSecret
[src]
impl Drop for EphemeralSecret
[src]impl<'a> From<&'a EphemeralSecret> for PublicKey
[src]
impl<'a> From<&'a EphemeralSecret> for PublicKey
[src]fn from(secret: &'a EphemeralSecret) -> PublicKey
[src]
fn from(secret: &'a EphemeralSecret) -> PublicKey
[src]Given an x25519 EphemeralSecret
key, compute its corresponding PublicKey
.