pub struct ExecutionProof {
pub function_hash: [u8; 32],
pub args_hash: [u8; 32],
pub result_hash: [u8; 32],
pub timestamp: u64,
pub trace: Option<Vec<[u8; 32]>>,
pub proof_hash: [u8; 32],
}Expand description
A cryptographic proof that a function was executed with given inputs producing given outputs.
Fields§
§function_hash: [u8; 32]Content hash of the function that was executed.
args_hash: [u8; 32]SHA-256 hash of the serialized arguments.
result_hash: [u8; 32]SHA-256 hash of the serialized result.
timestamp: u64Unix timestamp (seconds) when execution completed.
trace: Option<Vec<[u8; 32]>>Optional execution trace: hashes of intermediate states.
proof_hash: [u8; 32]Hash of this entire proof (excluding this field).
Implementations§
Source§impl ExecutionProof
impl ExecutionProof
Sourcepub fn compute_proof_hash(
function_hash: &[u8; 32],
args_hash: &[u8; 32],
result_hash: &[u8; 32],
timestamp: u64,
trace: &Option<Vec<[u8; 32]>>,
) -> [u8; 32]
pub fn compute_proof_hash( function_hash: &[u8; 32], args_hash: &[u8; 32], result_hash: &[u8; 32], timestamp: u64, trace: &Option<Vec<[u8; 32]>>, ) -> [u8; 32]
Compute a deterministic hash over all proof fields except proof_hash itself.
Sourcepub fn verify_integrity(&self) -> bool
pub fn verify_integrity(&self) -> bool
Verify that the proof’s proof_hash matches its contents.
Trait Implementations§
Source§impl Clone for ExecutionProof
impl Clone for ExecutionProof
Source§fn clone(&self) -> ExecutionProof
fn clone(&self) -> ExecutionProof
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 moreSource§impl Debug for ExecutionProof
impl Debug for ExecutionProof
Source§impl<'de> Deserialize<'de> for ExecutionProof
impl<'de> Deserialize<'de> for ExecutionProof
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ExecutionProof
impl RefUnwindSafe for ExecutionProof
impl Send for ExecutionProof
impl Sync for ExecutionProof
impl Unpin for ExecutionProof
impl UnsafeUnpin for ExecutionProof
impl UnwindSafe for ExecutionProof
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