pub struct ProverCommittingG1 { /* private fields */ }
Expand description
Proof of knowledge of messages in a vector commitment. Commit for each message or blinding factor used
Implementations§
Source§impl ProverCommittingG1
impl ProverCommittingG1
Sourcepub fn commit<B: AsRef<G1>>(&mut self, base: B) -> usize
pub fn commit<B: AsRef<G1>>(&mut self, base: B) -> usize
Commit a base point with a blinding factor. The blinding factor is generated randomly
Sourcepub fn commit_with<B: AsRef<G1>, S: AsRef<Fr>>(
&mut self,
base: B,
blinding_factor: S,
) -> usize
pub fn commit_with<B: AsRef<G1>, S: AsRef<Fr>>( &mut self, base: B, blinding_factor: S, ) -> usize
Commit a base point with a blinding factor.
Sourcepub fn finish(self) -> ProverCommittedG1
pub fn finish(self) -> ProverCommittedG1
Add pairwise product of (self.bases
, self.blindings). Uses multi-exponentiation.
Sourcepub fn get_index(
&self,
idx: usize,
) -> Result<(GeneratorG1, SignatureMessage), BBSError>
pub fn get_index( &self, idx: usize, ) -> Result<(GeneratorG1, SignatureMessage), BBSError>
Return the generator and blinding factor at idx
Trait Implementations§
Source§impl Clone for ProverCommittingG1
impl Clone for ProverCommittingG1
Source§fn clone(&self) -> ProverCommittingG1
fn clone(&self) -> ProverCommittingG1
Returns a copy 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 moreSource§impl Debug for ProverCommittingG1
impl Debug for ProverCommittingG1
Auto Trait Implementations§
impl Freeze for ProverCommittingG1
impl RefUnwindSafe for ProverCommittingG1
impl Send for ProverCommittingG1
impl Sync for ProverCommittingG1
impl Unpin for ProverCommittingG1
impl UnwindSafe for ProverCommittingG1
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> 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