pub struct EphemeralPrivateKey { /* private fields */ }
Expand description

An ephemeral private key for use (only) with agree_ephemeral. The signature of agree_ephemeral ensures that an EphemeralPrivateKey can be used for at most one key agreement.

Implementations§

Generate a new ephemeral private key for the given algorithm.

C analog: EC_KEY_new_by_curve_name + EC_KEY_generate_key.

The key exchange algorithm.

The size in bytes of the encoded public key.

Computes the public key from the private key’s value and fills out with the public point encoded in the standard form for the algorithm.

out.len() must be equal to the value returned by public_key_len.

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.