Struct winter_prover::StarkProof
source · pub struct StarkProof {
pub context: Context,
pub num_unique_queries: u8,
pub commitments: Commitments,
pub trace_queries: Vec<Queries>,
pub constraint_queries: Queries,
pub ood_frame: OodFrame,
pub fri_proof: FriProof,
pub pow_nonce: u64,
}Expand description
A proof generated by Winterfell prover.
A STARK proof contains information proving that a computation was executed correctly. A proof also contains basic metadata for the computation, but neither the definition of the computation itself, nor public inputs consumed by the computation are contained in a proof.
A proof can be serialized into a sequence of bytes using to_bytes() function, and deserialized from a sequence of bytes using from_bytes() function.
To estimate soundness of a proof (in bits), security_level() function can be used.
Fields§
§context: ContextBasic metadata about the execution of the computation described by this proof.
num_unique_queries: u8Number of unique queries made by the verifier. This will be different from the context.options.num_queries if the same position in the domain was queried more than once.
commitments: CommitmentsCommitments made by the prover during the commit phase of the protocol.
trace_queries: Vec<Queries>Decommitments of extended execution trace values (for all trace segments) at position queried by the verifier.
constraint_queries: QueriesDecommitments of constraint composition polynomial evaluations at positions queried by the verifier.
ood_frame: OodFrameTrace and constraint polynomial evaluations at an out-of-domain point.
fri_proof: FriProofLow-degree proof for a DEEP composition polynomial.
pow_nonce: u64Proof-of-work nonce for query seed grinding.
Implementations§
source§impl StarkProof
impl StarkProof
sourcepub fn options(&self) -> &ProofOptions
pub fn options(&self) -> &ProofOptions
Returns STARK protocol parameters used to generate this proof.
sourcepub fn trace_layout(&self) -> &TraceLayout
pub fn trace_layout(&self) -> &TraceLayout
Returns a layout describing how columns of the execution trace described by this context are arranged into segments.
sourcepub fn trace_length(&self) -> usize
pub fn trace_length(&self) -> usize
Returns trace length for the computation described by this proof.
sourcepub fn get_trace_info(&self) -> TraceInfo
pub fn get_trace_info(&self) -> TraceInfo
Returns trace info for the computation described by this proof.
sourcepub fn lde_domain_size(&self) -> usize
pub fn lde_domain_size(&self) -> usize
Returns the size of the LDE domain for the computation described by this proof.
sourcepub fn security_level<H>(&self, conjectured: bool) -> u32where
H: Hasher,
pub fn security_level<H>(&self, conjectured: bool) -> u32where
H: Hasher,
Returns security level of this proof (in bits).
When conjectured is true, conjectured security level is returned; otherwise, provable
security level is returned. Usually, the number of queries needed for provable security is
2x - 3x higher than the number of queries needed for conjectured security at the same
security level.
sourcepub fn from_bytes(source: &[u8]) -> Result<StarkProof, DeserializationError>
pub fn from_bytes(source: &[u8]) -> Result<StarkProof, DeserializationError>
Returns a STARK proof read from the specified source.
Errors
Returns an error of a valid STARK proof could not be read from the specified source.
sourcepub fn new_dummy() -> StarkProof
pub fn new_dummy() -> StarkProof
Creates a dummy StarkProof for use in tests.
Trait Implementations§
source§impl Clone for StarkProof
impl Clone for StarkProof
source§fn clone(&self) -> StarkProof
fn clone(&self) -> StarkProof
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for StarkProof
impl Debug for StarkProof
source§impl Deserializable for StarkProof
impl Deserializable for StarkProof
source§fn read_from<R>(source: &mut R) -> Result<StarkProof, DeserializationError>where
R: ByteReader,
fn read_from<R>(source: &mut R) -> Result<StarkProof, DeserializationError>where
R: ByteReader,
source, attempts to deserialize these bytes
into Self, and returns the result. Read moresource§fn read_from_bytes(bytes: &[u8]) -> Result<Self, DeserializationError>
fn read_from_bytes(bytes: &[u8]) -> Result<Self, DeserializationError>
source§fn read_batch_from<R>(
source: &mut R,
num_elements: usize
) -> Result<Vec<Self>, DeserializationError>where
R: ByteReader,
fn read_batch_from<R>(
source: &mut R,
num_elements: usize
) -> Result<Vec<Self>, DeserializationError>where
R: ByteReader,
source, attempts to deserialize these bytes
into a vector with the specified number of Self elements, and returns the result. Read moresource§impl PartialEq for StarkProof
impl PartialEq for StarkProof
source§fn eq(&self, other: &StarkProof) -> bool
fn eq(&self, other: &StarkProof) -> bool
self and other values to be equal, and is used
by ==.source§impl Serializable for StarkProof
impl Serializable for StarkProof
source§fn write_into<W>(&self, target: &mut W)where
W: ByteWriter,
fn write_into<W>(&self, target: &mut W)where
W: ByteWriter,
self into bytes and writes these bytes into the target.