pub struct MerkleTreeMmcs<P, PW, H, C, const DIGEST_ELEMS: usize> { /* private fields */ }
Expand description
A vector commitment scheme backed by a MerkleTree
.
Generics:
P
: a leaf valuePW
: an element of a digestH
: the leaf hasherC
: the digest compression function
Implementations§
Trait Implementations§
Source§impl<P: Clone, PW: Clone, H: Clone, C: Clone, const DIGEST_ELEMS: usize> Clone for MerkleTreeMmcs<P, PW, H, C, DIGEST_ELEMS>
impl<P: Clone, PW: Clone, H: Clone, C: Clone, const DIGEST_ELEMS: usize> Clone for MerkleTreeMmcs<P, PW, H, C, DIGEST_ELEMS>
Source§fn clone(&self) -> MerkleTreeMmcs<P, PW, H, C, DIGEST_ELEMS>
fn clone(&self) -> MerkleTreeMmcs<P, PW, H, C, DIGEST_ELEMS>
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<P: Debug, PW: Debug, H: Debug, C: Debug, const DIGEST_ELEMS: usize> Debug for MerkleTreeMmcs<P, PW, H, C, DIGEST_ELEMS>
impl<P: Debug, PW: Debug, H: Debug, C: Debug, const DIGEST_ELEMS: usize> Debug for MerkleTreeMmcs<P, PW, H, C, DIGEST_ELEMS>
Source§impl<P, PW, H, C, const DIGEST_ELEMS: usize> Mmcs<<P as PackedValue>::Value> for MerkleTreeMmcs<P, PW, H, C, DIGEST_ELEMS>where
P: PackedValue,
PW: PackedValue,
H: CryptographicHasher<P::Value, [PW::Value; DIGEST_ELEMS]> + CryptographicHasher<P, [PW; DIGEST_ELEMS]> + Sync,
C: PseudoCompressionFunction<[PW::Value; DIGEST_ELEMS], 2> + PseudoCompressionFunction<[PW; DIGEST_ELEMS], 2> + Sync,
PW::Value: Eq,
[PW::Value; DIGEST_ELEMS]: Serialize + for<'de> Deserialize<'de>,
impl<P, PW, H, C, const DIGEST_ELEMS: usize> Mmcs<<P as PackedValue>::Value> for MerkleTreeMmcs<P, PW, H, C, DIGEST_ELEMS>where
P: PackedValue,
PW: PackedValue,
H: CryptographicHasher<P::Value, [PW::Value; DIGEST_ELEMS]> + CryptographicHasher<P, [PW; DIGEST_ELEMS]> + Sync,
C: PseudoCompressionFunction<[PW::Value; DIGEST_ELEMS], 2> + PseudoCompressionFunction<[PW; DIGEST_ELEMS], 2> + Sync,
PW::Value: Eq,
[PW::Value; DIGEST_ELEMS]: Serialize + for<'de> Deserialize<'de>,
type ProverData<M> = MerkleTree<<P as PackedValue>::Value, <PW as PackedValue>::Value, M, DIGEST_ELEMS>
type Commitment = Hash<<P as PackedValue>::Value, <PW as PackedValue>::Value, DIGEST_ELEMS>
type Proof = Vec<[<PW as PackedValue>::Value; DIGEST_ELEMS]>
type Error = MerkleTreeError
fn commit<M: Matrix<P::Value>>( &self, inputs: Vec<M>, ) -> (Self::Commitment, Self::ProverData<M>)
Source§fn open_batch<M: Matrix<P::Value>>(
&self,
index: usize,
prover_data: &MerkleTree<P::Value, PW::Value, M, DIGEST_ELEMS>,
) -> (Vec<Vec<P::Value>>, Vec<[PW::Value; DIGEST_ELEMS]>)
fn open_batch<M: Matrix<P::Value>>( &self, index: usize, prover_data: &MerkleTree<P::Value, PW::Value, M, DIGEST_ELEMS>, ) -> (Vec<Vec<P::Value>>, Vec<[PW::Value; DIGEST_ELEMS]>)
Opens a batch of rows from committed matrices
returns
(openings, proof)
where openings
is a vector whose i
th element is the j
th row of the ith matrix M[i]
,
and j = index >> (log2_ceil(max_height) - log2_ceil(M[i].height))
.Source§fn get_matrices<'a, M: Matrix<P::Value>>(
&self,
prover_data: &'a Self::ProverData<M>,
) -> Vec<&'a M>
fn get_matrices<'a, M: Matrix<P::Value>>( &self, prover_data: &'a Self::ProverData<M>, ) -> Vec<&'a M>
Get the matrices that were committed to.
Source§fn verify_batch(
&self,
commit: &Self::Commitment,
dimensions: &[Dimensions],
index: usize,
opened_values: &[Vec<P::Value>],
proof: &Self::Proof,
) -> Result<(), Self::Error>
fn verify_batch( &self, commit: &Self::Commitment, dimensions: &[Dimensions], index: usize, opened_values: &[Vec<P::Value>], proof: &Self::Proof, ) -> Result<(), Self::Error>
Verify a batch opening.
index
is the row index we’re opening for each matrix, following the same
semantics as open_batch
.
dimensions
is a slice whose ith element is the dimensions of the matrix being opened
in the ith openingfn commit_matrix<M>(&self, input: M) -> (Self::Commitment, Self::ProverData<M>)where
M: Matrix<T>,
fn commit_vec( &self, input: Vec<T>, ) -> (Self::Commitment, Self::ProverData<DenseMatrix<T>>)
fn get_matrix_heights<M>(&self, prover_data: &Self::ProverData<M>) -> Vec<usize>where
M: Matrix<T>,
Source§fn get_max_height<M>(&self, prover_data: &Self::ProverData<M>) -> usizewhere
M: Matrix<T>,
fn get_max_height<M>(&self, prover_data: &Self::ProverData<M>) -> usizewhere
M: Matrix<T>,
Get the largest height of any committed matrix.
impl<P: Copy, PW: Copy, H: Copy, C: Copy, const DIGEST_ELEMS: usize> Copy for MerkleTreeMmcs<P, PW, H, C, DIGEST_ELEMS>
Auto Trait Implementations§
impl<P, PW, H, C, const DIGEST_ELEMS: usize> Freeze for MerkleTreeMmcs<P, PW, H, C, DIGEST_ELEMS>
impl<P, PW, H, C, const DIGEST_ELEMS: usize> RefUnwindSafe for MerkleTreeMmcs<P, PW, H, C, DIGEST_ELEMS>
impl<P, PW, H, C, const DIGEST_ELEMS: usize> Send for MerkleTreeMmcs<P, PW, H, C, DIGEST_ELEMS>
impl<P, PW, H, C, const DIGEST_ELEMS: usize> Sync for MerkleTreeMmcs<P, PW, H, C, DIGEST_ELEMS>
impl<P, PW, H, C, const DIGEST_ELEMS: usize> Unpin for MerkleTreeMmcs<P, PW, H, C, DIGEST_ELEMS>
impl<P, PW, H, C, const DIGEST_ELEMS: usize> UnwindSafe for MerkleTreeMmcs<P, PW, H, C, DIGEST_ELEMS>
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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