Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/pcs/kzg/params.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,13 +119,13 @@ impl<E: Pairing> RawVerifierKey for RawKzgVerifierKey<E> {
#[derive(Clone, Debug)]
pub struct KzgVerifierKey<E: Pairing> {
// generator of G1
pub(crate) g1: E::G1Affine,
pub g1: E::G1Affine,
// G1Prepared is just a wrapper around G1Affine // TODO: fixed-base precomputations
// generator of G2, prepared
pub(crate) g2: E::G2Prepared,
pub g2: E::G2Prepared,
// G2Prepared can be used as a pairing RHS only
// tau.g2, prepared
pub(crate) tau_in_g2: E::G2Prepared, // G2Prepared can be used as a pairing RHS only
pub tau_in_g2: E::G2Prepared, // G2Prepared can be used as a pairing RHS only
}

impl<E: Pairing> VerifierKey for KzgVerifierKey<E> {}
Expand Down
Loading