Trait snarkvm_wasm::data_structures::PCUniversalParams[][src]

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

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

Required methods

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

Outputs the maximum degree supported by the committer key.

Loading content...

Implementors

impl<E> PCUniversalParams for UniversalParams<E> where
    E: PairingEngine
[src]

Loading content...