Struct mpvss_rs::DistributionSharesBox[][src]

pub struct DistributionSharesBox {
    pub commitments: Vec<BigInt>,
    pub positions: BTreeMap<BigInt, i64>,
    pub shares: BTreeMap<BigInt, BigInt>,
    pub publickeys: Vec<BigInt>,
    pub challenge: BigInt,
    pub responses: BTreeMap<BigInt, BigInt>,
    pub U: BigInt,
}

the dealer wishes to distribute a secret among participants P1,…,Pn. The dealer picks a randompolynomialp of degree at most t−1 with coefficients in Z_q

Fields

commitments: Vec<BigInt>positions: BTreeMap<BigInt, i64>shares: BTreeMap<BigInt, BigInt>publickeys: Vec<BigInt>challenge: BigIntresponses: BTreeMap<BigInt, BigInt>U: BigInt

Implementations

impl DistributionSharesBox[src]

pub fn new() -> Self[src]

pub fn init(
    &mut self,
    commitments: Vec<BigInt>,
    positions: BTreeMap<BigInt, i64>,
    shares: BTreeMap<BigInt, BigInt>,
    publickeys: Vec<BigInt>,
    challenge: BigInt,
    responses: BTreeMap<BigInt, BigInt>,
    U: BigInt
)
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.