pub enum ProvingSystem {
Mock,
Groth16,
Plonk,
}Expand description
Enumeration of supported zero-knowledge proving systems.
This enum represents the different proving systems that can be used to generate and verify zero-knowledge proofs. Each proving system has different characteristics in terms of proof size, verification time, and trusted setup requirements.
§Proving Systems
§Production Systems
Groth16: Efficient zk-SNARK with constant-size proofs and fast verificationPlonk: Universal zk-SNARK with universal trusted setup
§Testing Systems
Mock: Mock proving system for testing without cryptographic operations
Variants§
Trait Implementations§
Source§impl Clone for ProvingSystem
impl Clone for ProvingSystem
Source§fn clone(&self) -> ProvingSystem
fn clone(&self) -> ProvingSystem
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ProvingSystem
impl RefUnwindSafe for ProvingSystem
impl Send for ProvingSystem
impl Sync for ProvingSystem
impl Unpin for ProvingSystem
impl UnwindSafe for ProvingSystem
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more