pub struct VerifyMmrSuccessor;
Expand description
Verify that one MMR is a successor to another.
Verify the scucessorship relation between two MMRs. A MmrSuccessorProof
is necessary to demonstrate this relation, but it is not a stack argument
because this algorithm obtains the relevant info (authentication paths) from
nondeterministic digests. Accordingly, nondeterminism must be initialized
correctly with the MmrSuccessorProof
.
This snippet crashes if the relation does not hold (or if the proof is invalid).
Implementations§
Source§impl VerifyMmrSuccessor
impl VerifyMmrSuccessor
Sourcepub fn update_nondeterminism(
nondeterminism: &mut NonDeterminism,
mmr_successor_proof: &MmrSuccessorProof,
)
pub fn update_nondeterminism( nondeterminism: &mut NonDeterminism, mmr_successor_proof: &MmrSuccessorProof, )
Update a nondeterminism in accordance with verifying a given MmrSuccessorProof
with this snippet.
Trait Implementations§
Source§impl BasicSnippet for VerifyMmrSuccessor
impl BasicSnippet for VerifyMmrSuccessor
fn inputs(&self) -> Vec<(DataType, String)>
fn outputs(&self) -> Vec<(DataType, String)>
fn entrypoint(&self) -> String
fn code(&self, library: &mut Library) -> Vec<LabelledInstruction>
fn annotated_code(&self, library: &mut Library) -> Vec<LabelledInstruction>
fn link_for_isolated_run(&self) -> Vec<LabelledInstruction>
Source§fn init_stack_for_isolated_run(&self) -> Vec<BFieldElement>
fn init_stack_for_isolated_run(&self) -> Vec<BFieldElement>
Intial stack on program start, when the snippet runs in isolation.
fn stack_diff(&self) -> isize
Auto Trait Implementations§
impl Freeze for VerifyMmrSuccessor
impl RefUnwindSafe for VerifyMmrSuccessor
impl Send for VerifyMmrSuccessor
impl Sync for VerifyMmrSuccessor
impl Unpin for VerifyMmrSuccessor
impl UnwindSafe for VerifyMmrSuccessor
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> 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