[][src]Struct mpvss_rs::DistributionSharesBox

pub struct DistributionSharesBox {
    pub commitments: Vec<BigInt>,
    pub positions: HashMap<BigInt, i64>,
    pub shares: HashMap<BigInt, BigInt>,
    pub publickeys: Vec<BigInt>,
    pub challenge: BigInt,
    pub responses: HashMap<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: HashMap<BigInt, i64>shares: HashMap<BigInt, BigInt>publickeys: Vec<BigInt>challenge: BigIntresponses: HashMap<BigInt, BigInt>U: BigInt

Implementations

impl DistributionSharesBox[src]

pub fn new() -> Self[src]

pub fn init(
    &mut self,
    commitments: Vec<BigInt>,
    positions: HashMap<BigInt, i64>,
    shares: HashMap<BigInt, BigInt>,
    publickeys: Vec<BigInt>,
    challenge: BigInt,
    responses: HashMap<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> 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.