Struct ark_poly_commit::ipa_pc::InnerProductArgPC[][src]

pub struct InnerProductArgPC<G: AffineCurve, D: Digest, P: UVPolynomial<G::ScalarField>> { /* fields omitted */ }

A polynomial commitment scheme based on the hardness of the discrete logarithm problem in prime-order groups. The construction is described in detail in [BCMS20].

Degree bound enforcement requires that (at least one of) the points at which a committed polynomial is evaluated are from a distribution that is random conditioned on the polynomial. This is because degree bound enforcement relies on checking a polynomial identity at this point. More formally, the points must be sampled from an admissible query sampler, as detailed in [CHMMVW20].

Implementations

impl<G: AffineCurve, D: Digest, P: UVPolynomial<G::ScalarField>> InnerProductArgPC<G, D, P>[src]

pub const PROTOCOL_NAME: &'static [u8][src]

PROTOCOL_NAME is used as a seed for the setup function.

Trait Implementations

impl<G, D, P> PolynomialCommitment<<G as AffineCurve>::ScalarField, P> for InnerProductArgPC<G, D, P> where
    G: AffineCurve,
    D: Digest,
    P: UVPolynomial<G::ScalarField, Point = G::ScalarField>, 
[src]

type UniversalParams = UniversalParams<G>

The universal parameters for the commitment scheme. These are “trimmed” down to Self::CommitterKey and Self::VerifierKey by Self::trim. Read more

type CommitterKey = CommitterKey<G>

The committer key for the scheme; used to commit to a polynomial and then open the commitment to produce an evaluation proof. Read more

type VerifierKey = VerifierKey<G>

The verifier key for the scheme; used to check an evaluation proof.

type PreparedVerifierKey = PreparedVerifierKey<G>

The prepared verifier key for the scheme; used to check an evaluation proof.

type Commitment = Commitment<G>

The commitment to a polynomial.

type PreparedCommitment = PreparedCommitment<G>

The prepared commitment to a polynomial.

type Randomness = Randomness<G>

The commitment randomness.

type Proof = Proof<G>

The evaluation proof for a single point.

type BatchProof = Vec<Self::Proof>

The evaluation proof for a query set.

type Error = Error

The error type for the scheme.

fn commit<'a>(
    ck: &Self::CommitterKey,
    polynomials: impl IntoIterator<Item = &'a LabeledPolynomial<G::ScalarField, P>>,
    rng: Option<&mut dyn RngCore>
) -> Result<(Vec<LabeledCommitment<Self::Commitment>>, Vec<Self::Randomness>), Self::Error> where
    P: 'a, 
[src]

Outputs a commitment to polynomial.

fn check_combinations_individual_opening_challenges<'a, R: RngCore>(
    vk: &Self::VerifierKey,
    lc_s: impl IntoIterator<Item = &'a LinearCombination<G::ScalarField>>,
    commitments: impl IntoIterator<Item = &'a LabeledCommitment<Self::Commitment>>,
    query_set: &QuerySet<G::ScalarField>,
    evaluations: &Evaluations<G::ScalarField, P::Point>,
    proof: &BatchLCProof<G::ScalarField, P, Self>,
    opening_challenges: &dyn Fn(u64) -> G::ScalarField,
    rng: &mut R
) -> Result<bool, Self::Error> where
    Self::Commitment: 'a, 
[src]

Checks that values are the true evaluations at query_set of the polynomials committed in labeled_commitments.

Auto Trait Implementations

impl<G, D, P> RefUnwindSafe for InnerProductArgPC<G, D, P> where
    D: RefUnwindSafe,
    G: RefUnwindSafe,
    P: RefUnwindSafe

impl<G, D, P> Send for InnerProductArgPC<G, D, P> where
    D: Send,
    P: Send

impl<G, D, P> Sync for InnerProductArgPC<G, D, P> where
    D: Sync,
    P: Sync

impl<G, D, P> Unpin for InnerProductArgPC<G, D, P> where
    D: Unpin,
    G: Unpin,
    P: Unpin

impl<G, D, P> UnwindSafe for InnerProductArgPC<G, D, P> where
    D: UnwindSafe,
    G: UnwindSafe,
    P: 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> 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, 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>,