pub struct OpeningProof<G: AffineRepr> {
    pub lr: Vec<(G, G)>,
    pub delta: G,
    pub z1: G::ScalarField,
    pub z2: G::ScalarField,
    pub sg: G,
}

Fields§

§lr: Vec<(G, G)>

Vector of rounds of L & R commitments

§delta: G§z1: G::ScalarField§z2: G::ScalarField§sg: G

A final folded commitment base

Implementations§

source§

impl<G: AffineRepr> OpeningProof<G>

source

pub fn prechallenges<EFqSponge: FqSponge<G::BaseField, G, G::ScalarField>>( &self, sponge: &mut EFqSponge ) -> Vec<ScalarChallenge<G::ScalarField>>

Computes a log-sized vector of scalar challenges for recombining elements inside the IPA.

source

pub fn challenges<EFqSponge: FqSponge<G::BaseField, G, G::ScalarField>>( &self, endo_r: &G::ScalarField, sponge: &mut EFqSponge ) -> Challenges<G::ScalarField>

Same as prechallenges, but maps scalar challenges using the provided endomorphism, and computes their inverses.

Trait Implementations§

source§

impl<G: Clone + AffineRepr> Clone for OpeningProof<G>where G::ScalarField: Clone,

source§

fn clone(&self) -> OpeningProof<G>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<G: Debug + AffineRepr> Debug for OpeningProof<G>where G::ScalarField: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<G: Default + AffineRepr> Default for OpeningProof<G>where G::ScalarField: Default,

source§

fn default() -> OpeningProof<G>

Returns the “default value” for a type. Read more
source§

impl<'de, G> Deserialize<'de> for OpeningProof<G>where G: CanonicalDeserialize + CanonicalSerialize + AffineRepr,

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<G, CamlF, CamlG> From<CamlOpeningProof<CamlG, CamlF>> for OpeningProof<G>where G: AffineRepr, CamlG: Into<G>, CamlF: Into<G::ScalarField>,

source§

fn from(caml: CamlOpeningProof<CamlG, CamlF>) -> Self

Converts to this type from the input type.
source§

impl<G, CamlF, CamlG> From<OpeningProof<G>> for CamlOpeningProof<CamlG, CamlF>where G: AffineRepr, CamlG: From<G>, CamlF: From<G::ScalarField>,

source§

fn from(opening_proof: OpeningProof<G>) -> Self

Converts to this type from the input type.
source§

impl<BaseField: PrimeField, G: AffineRepr<BaseField = BaseField> + CommitmentCurve + EndoCurve> OpenProof<G> for OpeningProof<G>

§

type SRS = SRS<G>

source§

fn open<EFqSponge, RNG, D: EvaluationDomain<<G as AffineRepr>::ScalarField>>( srs: &Self::SRS, group_map: &<G as CommitmentCurve>::Map, plnms: &'_ [(DensePolynomialOrEvaluations<'_, G::ScalarField, D>, PolyComm<G::ScalarField>)], elm: &[<G as AffineRepr>::ScalarField], polyscale: <G as AffineRepr>::ScalarField, evalscale: <G as AffineRepr>::ScalarField, sponge: EFqSponge, rng: &mut RNG ) -> Selfwhere EFqSponge: Clone + FqSponge<<G as AffineRepr>::BaseField, G, <G as AffineRepr>::ScalarField>, RNG: RngCore + CryptoRng,

Create an opening proof for a batch of polynomials. The parameters are the following: Read more
source§

fn verify<EFqSponge, RNG>( srs: &Self::SRS, group_map: &G::Map, batch: &mut [BatchEvaluationProof<'_, G, EFqSponge, Self>], rng: &mut RNG ) -> boolwhere EFqSponge: FqSponge<<G as AffineRepr>::BaseField, G, <G as AffineRepr>::ScalarField>, RNG: RngCore + CryptoRng,

Verify the opening proof
source§

impl<G: PartialEq + AffineRepr> PartialEq<OpeningProof<G>> for OpeningProof<G>where G::ScalarField: PartialEq,

source§

fn eq(&self, other: &OpeningProof<G>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<G> Serialize for OpeningProof<G>where G: CanonicalDeserialize + CanonicalSerialize + AffineRepr,

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<G: AffineRepr> StructuralPartialEq for OpeningProof<G>

Auto Trait Implementations§

§

impl<G> RefUnwindSafe for OpeningProof<G>where G: RefUnwindSafe, <G as AffineRepr>::ScalarField: RefUnwindSafe,

§

impl<G> Send for OpeningProof<G>

§

impl<G> Sync for OpeningProof<G>

§

impl<G> Unpin for OpeningProof<G>where G: Unpin, <G as AffineRepr>::ScalarField: Unpin,

§

impl<G> UnwindSafe for OpeningProof<G>where G: UnwindSafe, <G as AffineRepr>::ScalarField: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

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

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

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

§

fn vzip(self) -> V

source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,