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 EphemeralSecrets 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

Perform a Diffie-Hellman key agreement between self and their_public key to produce a SharedSecret.

Generate an x25519 EphemeralSecret key.

Trait Implementations

Executes the destructor for this type. Read more

Given an x25519 EphemeralSecret key, compute its corresponding PublicKey.

Zero out this object from memory using Rust intrinsics which ensure the zeroization operation is not “optimized away” by the compiler. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.