Trait snarkvm_wasm::PCUniversalParams[][src]

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

Defines the minimal interface for public params for any polynomial commitment scheme.

Required methods

Outputs the maximum degree supported by the committer key.

Implementors