Trait snarkvm_wasm::PCVerifierKey[][src]

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

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

Required methods

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

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

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

Outputs the maximum degree supported by the verifier key.

Loading content...

Implementors

impl<E> PCVerifierKey for snarkvm_wasm::marlin_pc::VerifierKey<E> where
    E: PairingEngine
[src]

impl<E> PCVerifierKey for snarkvm_wasm::sonic_pc::VerifierKey<E> where
    E: PairingEngine
[src]

Loading content...