triton_vm::proof_stream

Struct ProofStream

Source
pub struct ProofStream {
    pub items: Vec<ProofItem>,
    pub items_index: usize,
    pub sponge: Tip5,
}

Fields§

§items: Vec<ProofItem>§items_index: usize§sponge: Tip5

Implementations§

Source§

impl ProofStream

Source

pub fn new() -> Self

Source

pub fn transcript_length(&self) -> usize

The number of field elements required to encode the proof.

Source

pub fn alter_fiat_shamir_state_with(&mut self, item: &impl BFieldCodec)

Alters the Fiat-Shamir’s sponge state with the encoding of the given item. Does not record the given item in the proof stream. This is useful for items that are not sent to the verifier, e.g., the Claim.

See also Self::enqueue() and Self::dequeue().

Source

pub fn enqueue(&mut self, item: ProofItem)

Send a proof item as prover to verifier. Some items do not need to be included in the Fiat-Shamir heuristic, i.e., they do not need to modify the sponge state. For those items, namely those that evaluate to false according to ProofItem::include_in_fiat_shamir_heuristic, the sponge state is not modified. For example:

  • Merkle authentication structure do not need to be hashed if the root of the tree in question was hashed previously.
  • If the proof stream is not used to sample any more randomness, i.e., after the last round of interaction, no further items need to be hashed.
Source

pub fn dequeue(&mut self) -> Result<ProofItem, ProofStreamError>

Receive a proof item from prover as verifier. See ProofStream::enqueue for more details.

Source

pub fn sample_indices( &mut self, upper_bound: usize, num_indices: usize, ) -> Vec<usize>

Given an upper_bound that is a power of 2, produce num_indices uniform random numbers in the interval [0; upper_bound).

  • upper_bound: The (non-inclusive) upper bound. Must be a power of two.
  • num_indices: The number of indices to sample
Source

pub fn sample_scalars(&mut self, num_scalars: usize) -> Vec<XFieldElement>

A thin wrapper around H::sample_scalars.

Trait Implementations§

Source§

impl<'arbitrary> Arbitrary<'arbitrary> for ProofStream

Source§

fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>

Generate an arbitrary value of Self from the given unstructured data. Read more
Source§

fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>

Generate an arbitrary value of Self from the entirety of the given unstructured data. Read more
Source§

fn size_hint(depth: usize) -> (usize, Option<usize>)

Get a size hint for how many bytes out of an Unstructured this type needs to construct itself. Read more
Source§

impl BFieldCodec for ProofStream

Source§

type Error = ProofStreamBFieldDecodingError

Source§

fn decode(sequence: &[BFieldElement]) -> Result<Box<Self>, Self::Error>

Source§

fn encode(&self) -> Vec<BFieldElement>

Source§

fn static_length() -> Option<usize>

Returns the length in number of BFieldElements if it is known at compile-time. Otherwise, None.
Source§

impl Clone for ProofStream

Source§

fn clone(&self) -> ProofStream

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ProofStream

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for ProofStream

Source§

fn default() -> ProofStream

Returns the “default value” for a type. Read more
Source§

impl From<&ProofStream> for Proof

Source§

fn from(proof_stream: &ProofStream) -> Self

Converts to this type from the input type.
Source§

impl From<<ProofStream as BFieldCodec>::Error> for ProofStreamError

Source§

fn from(source: <ProofStream as BFieldCodec>::Error) -> Self

Converts to this type from the input type.
Source§

impl From<ProofStream> for Proof

Source§

fn from(proof_stream: ProofStream) -> Self

Converts to this type from the input type.
Source§

impl PartialEq for ProofStream

Source§

fn eq(&self, other: &ProofStream) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl TryFrom<&Proof> for ProofStream

Source§

type Error = ProofStreamError

The type returned in the event of a conversion error.
Source§

fn try_from(proof: &Proof) -> Result<Self, ProofStreamError>

Performs the conversion.
Source§

impl Eq for ProofStream

Source§

impl StructuralPartialEq for ProofStream

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize = _

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V