pub type SecretSharingPolynomial = StandardFormPolynomial<MaybeScalar>;
Expand description
Represents the secret-sharing polynomial available to the dealer in its original standard form, composed of a set of scalar coefficients.
Aliased Type§
struct SecretSharingPolynomial {
pub coefficients: Vec<MaybeScalar>,
}
Fields§
§coefficients: Vec<MaybeScalar>
The ordered set of coefficients, starting with the constant term.
Implementations§
Source§impl SecretSharingPolynomial
impl SecretSharingPolynomial
Issue a share at the given input x
.