pub struct VMVMessage<G1, GT> {
pub c: GT,
pub d2: GT,
pub e1: G1,
}Expand description
Vector-Matrix-Vector message for polynomial commitment transformation
Contains C, D₂, E₁. Note: E₂ can be computed by verifier as y·Γ₂,fin
Fields§
§c: GTC = e(MSM(T_vec’, v_vec), Γ₂,fin)
d2: GTD₂ = e(MSM(Γ₁[nu], v_vec), Γ₂,fin)
e1: G1E₁ = MSM(T_vec’, L_vec)
Trait Implementations§
Source§impl<G1: Clone, GT: Clone> Clone for VMVMessage<G1, GT>
impl<G1: Clone, GT: Clone> Clone for VMVMessage<G1, GT>
Source§fn clone(&self) -> VMVMessage<G1, GT>
fn clone(&self) -> VMVMessage<G1, GT>
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<G1, GT> Freeze for VMVMessage<G1, GT>
impl<G1, GT> RefUnwindSafe for VMVMessage<G1, GT>where
GT: RefUnwindSafe,
G1: RefUnwindSafe,
impl<G1, GT> Send for VMVMessage<G1, GT>
impl<G1, GT> Sync for VMVMessage<G1, GT>
impl<G1, GT> Unpin for VMVMessage<G1, GT>
impl<G1, GT> UnwindSafe for VMVMessage<G1, GT>where
GT: UnwindSafe,
G1: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more