Trait snarkvm_wasm::PCVerifierKey[][src]

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

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

Required methods

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

Outputs the maximum degree supported by the verifier key.

Implementors