Struct ring::agreement::EphemeralPrivateKey
source · 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§
source§impl EphemeralPrivateKey
impl EphemeralPrivateKey
sourcepub fn generate(
alg: &'static Algorithm,
rng: &dyn SecureRandom
) -> Result<Self, Unspecified>
pub fn generate( alg: &'static Algorithm, rng: &dyn SecureRandom ) -> Result<Self, Unspecified>
Generate a new ephemeral private key for the given algorithm.
sourcepub fn compute_public_key(&self) -> Result<PublicKey, Unspecified>
pub fn compute_public_key(&self) -> Result<PublicKey, Unspecified>
Computes the public key from the private key.