Struct ark_gm17::GM17[][src]

pub struct GM17<E: PairingEngine> { /* fields omitted */ }

The SNARK of [GrothMaller17].

Trait Implementations

impl<E: PairingEngine> CircuitSpecificSetupSNARK<<E as PairingEngine>::Fr> for GM17<E>[src]

impl<E: PairingEngine> SNARK<<E as PairingEngine>::Fr> for GM17<E>[src]

type ProvingKey = ProvingKey<E>

The information required by the prover to produce a proof for a specific circuit C. Read more

type VerifyingKey = VerifyingKey<E>

The information required by the verifier to check a proof for a specific circuit C. Read more

type Proof = Proof<E>

The proof output by the prover.

type ProcessedVerifyingKey = PreparedVerifyingKey<E>

This contains the verification key, but preprocessed to enable faster verification. Read more

type Error = SynthesisError

Errors encountered during setup, proving, or verification.

Auto Trait Implementations

impl<E> RefUnwindSafe for GM17<E> where
    E: RefUnwindSafe

impl<E> Send for GM17<E>

impl<E> Sync for GM17<E>

impl<E> Unpin for GM17<E> where
    E: Unpin

impl<E> UnwindSafe for GM17<E> where
    E: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,