pub type SecretShare = Evaluation<MaybeScalar, MaybeScalar>;Expand description
Represents a secret share held by a shareholder.
Aliased Type§
pub struct SecretShare {
pub input: MaybeScalar,
pub output: MaybeScalar,
}Fields§
§input: MaybeScalar§output: MaybeScalarTrait Implementations§
Source§impl Mul<G> for &SecretShare
impl Mul<G> for &SecretShare
Source§type Output = Evaluation<MaybeScalar, MaybePoint>
type Output = Evaluation<MaybeScalar, MaybePoint>
The resulting type after applying the
* operator.Source§impl Mul<G> for SecretShare
impl Mul<G> for SecretShare
Source§type Output = Evaluation<MaybeScalar, MaybePoint>
type Output = Evaluation<MaybeScalar, MaybePoint>
The resulting type after applying the
* operator.Source§impl Mul<Point> for &SecretShare
impl Mul<Point> for &SecretShare
Source§type Output = Evaluation<MaybeScalar, MaybePoint>
type Output = Evaluation<MaybeScalar, MaybePoint>
The resulting type after applying the
* operator.Source§impl Mul<Point> for SecretShare
impl Mul<Point> for SecretShare
Source§type Output = Evaluation<MaybeScalar, MaybePoint>
type Output = Evaluation<MaybeScalar, MaybePoint>
The resulting type after applying the
* operator.