Struct ark_poly_commit::ipa_pc::Proof[][src]

pub struct Proof<G: AffineCurve> {
    pub l_vec: Vec<G>,
    pub r_vec: Vec<G>,
    pub final_comm_key: G,
    pub c: G::ScalarField,
    pub hiding_comm: Option<G>,
    pub rand: Option<G::ScalarField>,
}

Proof is an evaluation proof that is output by InnerProductArg::open.

Fields

l_vec: Vec<G>

Vector of left elements for each of the log_d iterations in open

r_vec: Vec<G>

Vector of right elements for each of the log_d iterations within open

final_comm_key: G

Committer key from the last iteration within open

c: G::ScalarField

Coefficient from the last iteration within withinopen`

hiding_comm: Option<G>

Commitment to the blinding polynomial.

rand: Option<G::ScalarField>

Linear combination of all the randomness used for commitments to the opened polynomials, along with the randomness used for the commitment to the hiding polynomial.

Trait Implementations

impl<G: AffineCurve> CanonicalDeserialize for Proof<G>[src]

impl<G: AffineCurve> CanonicalSerialize for Proof<G>[src]

impl<G: AffineCurve> Clone for Proof<G>[src]

impl<G: AffineCurve> Debug for Proof<G>[src]

impl<G: AffineCurve> Default for Proof<G>[src]

impl<G: AffineCurve> Hash for Proof<G>[src]

impl<G: AffineCurve> PCProof for Proof<G>[src]

impl<G: AffineCurve> ToBytes for Proof<G>[src]

Auto Trait Implementations

impl<G> RefUnwindSafe for Proof<G> where
    G: RefUnwindSafe,
    <G as AffineCurve>::ScalarField: RefUnwindSafe

impl<G> Send for Proof<G>

impl<G> Sync for Proof<G>

impl<G> Unpin for Proof<G> where
    G: Unpin,
    <G as AffineCurve>::ScalarField: Unpin

impl<G> UnwindSafe for Proof<G> where
    G: UnwindSafe,
    <G as AffineCurve>::ScalarField: UnwindSafe

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> CallHasher for T where
    T: Hash + ?Sized

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

impl<T> Instrument 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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,