Struct frost_core::frost::keys::SharedSecret
source · pub struct SharedSecret<C: Ciphersuite>(_);
Expand description
A group secret to be split between participants.
This is similar to a crate::SigningKey
, but this secret is not intended to be used
on its own for signing, but split into shares that a threshold number of signers will use to
sign.
Implementations§
Trait Implementations§
source§fn clone(&self) -> SharedSecret<C>
fn clone(&self) -> SharedSecret<C>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§fn from(secret: &SharedSecret<C>) -> Self
fn from(secret: &SharedSecret<C>) -> Self
Converts to this type from the input type.
source§fn eq(&self, other: &SharedSecret<C>) -> bool
fn eq(&self, other: &SharedSecret<C>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.