Trait ark_poly_commit::data_structures::PCCommitterKey[][src]

pub trait PCCommitterKey: Clone + Debug + CanonicalSerialize + CanonicalDeserialize {
    fn max_degree(&self) -> usize;
fn supported_degree(&self) -> usize; }

Defines the minimal interface of committer keys for any polynomial commitment scheme.

Required methods

fn max_degree(&self) -> usize[src]

Outputs the maximum degree supported by the universal parameters Self was derived from.

fn supported_degree(&self) -> usize[src]

Outputs the maximum degree supported by the committer key.

Loading content...

Implementors

impl<E, P> PCCommitterKey for ark_poly_commit::marlin::marlin_pst13_pc::CommitterKey<E, P> where
    E: PairingEngine,
    P: MVPolynomial<E::Fr>,
    P::Point: Index<usize, Output = E::Fr>, 
[src]

impl<E: PairingEngine> PCCommitterKey for ark_poly_commit::marlin::marlin_pc::CommitterKey<E>[src]

impl<E: PairingEngine> PCCommitterKey for ark_poly_commit::sonic_pc::CommitterKey<E>[src]

impl<G: AffineCurve> PCCommitterKey for ark_poly_commit::ipa_pc::CommitterKey<G>[src]

Loading content...