#verifier #stark #zkp #crypto

no-std winter-verifier

Winterfell STARK verifier

17 unstable releases (7 breaking)

0.8.3 Mar 15, 2024
0.7.0 Oct 23, 2023
0.6.4 May 26, 2023
0.6.1 Mar 29, 2023
0.2.0 Aug 24, 2021

#353 in Cryptography

Download history 917/week @ 2024-01-01 1309/week @ 2024-01-08 1749/week @ 2024-01-15 2030/week @ 2024-01-22 2003/week @ 2024-01-29 1408/week @ 2024-02-05 1823/week @ 2024-02-12 1396/week @ 2024-02-19 1614/week @ 2024-02-26 2269/week @ 2024-03-04 1821/week @ 2024-03-11 1435/week @ 2024-03-18 1218/week @ 2024-03-25 1863/week @ 2024-04-01 1903/week @ 2024-04-08 1299/week @ 2024-04-15

6,338 downloads per month
Used in 14 crates (2 directly)

MIT license

1MB
14K SLoC

Winterfell STARK verifier

This crate contains an implementation of a STARK verifier which can verify proofs generated by a prover from the prover crate.

Usage

To verify a proof you can use verifier::verify() function, which has the following signature:

pub fn verify<AIR, HashFn, RandCoin>(
    proof: StarkProof,
    pub_inputs: AIR::PublicInputs,
    acceptable_options: &AcceptableOptions,
) -> Result<(), VerifierError> 
where 
    AIR: Air, 
    HashFn: ElementHasher<BaseField = AIR::BaseField>,
    RandCoin: RandomCoin<BaseField = AIR::BaseField, Hasher = HashFn>,

where:

  • AIR is a type implementing Air trait for your computation (see air crate for more info).
  • HashFn is a type defining the hash function used by the prover during proof generation.
  • RandCoin is a type defining the methodology for drawing random values during proof generation.
  • proof is the proof generated by the prover attesting that the computation was executed correctly against some set of public inputs.
  • pub_inputs is the set of public inputs against which the computation was executed by the prover.
  • acceptable_options defines a set of security parameters for the proofs which can be accepted by the verifier.

For example, if we have a struct FibAir which implements the Air trait and describes a computation of a Fibonacci sequence (see examples crate for the concrete implementation), we could verify that the prover computed the 1,048,576th term of the sequence correctly, by executing the following:

let min_sec = AcceptableOptions::MinConjecturedSecurity(95);
let fib_result = BaseElement::new(226333832811148522147755045522163790995);
match verifier::verify::<FibAir, Blake3, DefaultRandomCoin<Blake3>>(proof, fib_result, &min_sec) {
    Ok(_) => println!("Proof verified!"),
    Err(err) => println!("Failed to verify proof: {}", err),
}

where, 226333832811148522147755045522163790995 is the 1,048,576th term of the Fibonacci sequence when the sequence is computed in a 128-bit field with modulus 2128 - 45 * 240.

Performance

Proof verification is extremely fast and is nearly independent of the complexity of the computation being verified. In vast majority of cases proofs can be verified in 3 - 5 ms on a modern mid-range laptop CPU (using a single core).

There is one exception, however: if a computation requires a lot of sequence assertions (see air crate for more info), the verification time may grow beyond 5 ms. But for the impact to be noticeable, the number of asserted values would need to be in tens of thousands. And even for hundreds of thousands of sequence assertions, the verification time should not exceed 50 ms.

Crate features

This crate can be compiled with the following features:

  • std - enabled by default and relies on the Rust standard library.
  • no_std - does not rely on the Rust standard library and enables compilation to WebAssembly.

To compile with no_std, disable default features via --no-default-features flag.

License

This project is MIT licensed.

Dependencies

~3MB
~57K SLoC