Struct bellperson::groth16::aggregate::GipaProof[][src]

pub struct GipaProof<E: Engine> {
    pub nproofs: u32,
    pub comms_ab: Vec<(Output<E>, Output<E>)>,
    pub comms_c: Vec<(Output<E>, Output<E>)>,
    pub z_ab: Vec<(E::Fqk, E::Fqk)>,
    pub z_c: Vec<(E::G1, E::G1)>,
    pub final_a: E::G1Affine,
    pub final_b: E::G2Affine,
    pub final_c: E::G1Affine,
    pub final_vkey: (E::G2Affine, E::G2Affine),
    pub final_wkey: (E::G1Affine, E::G1Affine),
}
Expand description

It contains all elements derived in the GIPA loop for both TIPP and MIPP at the same time.

Fields

nproofs: u32comms_ab: Vec<(Output<E>, Output<E>)>comms_c: Vec<(Output<E>, Output<E>)>z_ab: Vec<(E::Fqk, E::Fqk)>z_c: Vec<(E::G1, E::G1)>final_a: E::G1Affinefinal_b: E::G2Affinefinal_c: E::G1Affinefinal_vkey: (E::G2Affine, E::G2Affine)

final commitment keys $v$ and $w$ - there is only one element at the end for v1 and v2 hence it’s a tuple.

final_wkey: (E::G1Affine, E::G1Affine)

Implementations

Writes the proof into the provided buffer.

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.