[][src]Struct tapir_cwtch::primitives::transcript::Transcript

pub struct Transcript { /* fields omitted */ }

Transcript is a wrapper around Merlin Transcripts to provide some structure for more complex protocol-driven applications as seen in Tapir

Implementations

impl Transcript[src]

pub fn new_transcript(label: &'static str) -> Transcript[src]

pub fn add_to_transcript(&mut self, label: &'static str, b: &[u8])[src]

pub fn output_transcript_to_audit(&self) -> String[src]

pub fn new_protocol(&mut self, label: &str)[src]

pub fn commit_to_transcript(&mut self, label: &'static str) -> [u8; 64][src]

Trait Implementations

impl Clone for Transcript[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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