1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
#![no_std]
#[cfg(feature = "alloc")]
#[macro_use]
extern crate alloc;
#[cfg(any(feature = "std", test))]
#[macro_use]
extern crate std;
pub use air::{
proof::StarkProof, Air, AirContext, Assertion, BoundaryConstraint, BoundaryConstraintGroup,
ConstraintCompositionCoefficients, ConstraintDivisor, DeepCompositionCoefficients,
EvaluationFrame, FieldExtension, HashFunction, ProofOptions, TraceInfo,
TransitionConstraintDegree, TransitionConstraintGroup,
};
pub use utils::{
iterators, ByteReader, ByteWriter, Deserializable, DeserializationError, Serializable,
};
use fri::FriProver;
use utils::collections::Vec;
pub use math;
use math::{fft::infer_degree, FieldElement, StarkField};
pub use crypto;
use crypto::{
hashers::{Blake3_256, Sha3_256},
ElementHasher,
};
#[cfg(feature = "std")]
use log::debug;
#[cfg(feature = "std")]
use math::log2;
#[cfg(feature = "std")]
use std::time::Instant;
mod domain;
use domain::StarkDomain;
mod constraints;
use constraints::{ConstraintCommitment, ConstraintEvaluator};
mod composer;
use composer::DeepCompositionPoly;
mod trace;
use trace::TracePolyTable;
pub use trace::{ExecutionTrace, ExecutionTraceFragment};
mod channel;
use channel::ProverChannel;
mod errors;
pub use errors::ProverError;
#[cfg(test)]
pub mod tests;
#[rustfmt::skip]
pub fn prove<AIR: Air>(
trace: ExecutionTrace<AIR::BaseElement>,
pub_inputs: AIR::PublicInputs,
options: ProofOptions,
) -> Result<StarkProof, ProverError> {
let mut pub_inputs_bytes = Vec::new();
pub_inputs.write_into(&mut pub_inputs_bytes);
let air = AIR::new(trace.get_info(), pub_inputs, options);
#[cfg(debug_assertions)]
trace.validate(&air);
match air.options().field_extension() {
FieldExtension::None => match air.options().hash_fn() {
HashFunction::Blake3_256 => generate_proof::
<AIR, AIR::BaseElement, Blake3_256<AIR::BaseElement>>
(air, trace, pub_inputs_bytes),
HashFunction::Sha3_256 => generate_proof::
<AIR, AIR::BaseElement, Sha3_256<AIR::BaseElement>>
(air, trace, pub_inputs_bytes)
},
FieldExtension::Quadratic => match air.options().hash_fn() {
HashFunction::Blake3_256 => generate_proof::
<AIR, <AIR::BaseElement as StarkField>::QuadExtension, Blake3_256<AIR::BaseElement>>
(air, trace, pub_inputs_bytes),
HashFunction::Sha3_256 => generate_proof::
<AIR, <AIR::BaseElement as StarkField>::QuadExtension, Sha3_256<AIR::BaseElement>>
(air, trace, pub_inputs_bytes),
},
}
}
fn generate_proof<A, E, H>(
air: A,
trace: ExecutionTrace<A::BaseElement>,
pub_inputs_bytes: Vec<u8>,
) -> Result<StarkProof, ProverError>
where
A: Air,
E: FieldElement<BaseField = A::BaseElement>,
H: ElementHasher<BaseField = A::BaseElement>,
{
let mut channel = ProverChannel::<A, E, H>::new(&air, pub_inputs_bytes);
#[cfg(feature = "std")]
let now = Instant::now();
let domain = StarkDomain::new(&air);
#[cfg(feature = "std")]
debug!(
"Built domain of 2^{} elements in {} ms",
log2(domain.lde_domain_size()),
now.elapsed().as_millis()
);
let (extended_trace, trace_polys) = trace.extend(&domain);
#[cfg(feature = "std")]
debug!(
"Extended execution trace of {} registers from 2^{} to 2^{} steps ({}x blowup) in {} ms",
extended_trace.width(),
log2(trace_polys.poly_size()),
log2(extended_trace.len()),
extended_trace.blowup(),
now.elapsed().as_millis()
);
#[cfg(feature = "std")]
let now = Instant::now();
let trace_tree = extended_trace.build_commitment::<H>();
channel.commit_trace(*trace_tree.root());
#[cfg(feature = "std")]
debug!(
"Committed to extended execution trace by building a Merkle tree of depth {} in {} ms",
trace_tree.depth(),
now.elapsed().as_millis()
);
#[cfg(feature = "std")]
let now = Instant::now();
let constraint_coeffs = channel.get_constraint_composition_coeffs();
let evaluator = ConstraintEvaluator::new(&air, constraint_coeffs);
let constraint_evaluations = evaluator.evaluate(&extended_trace, &domain);
#[cfg(feature = "std")]
debug!(
"Evaluated constraints over domain of 2^{} elements in {} ms",
log2(constraint_evaluations.num_rows()),
now.elapsed().as_millis()
);
#[cfg(feature = "std")]
let now = Instant::now();
let composition_poly = constraint_evaluations.into_poly()?;
#[cfg(feature = "std")]
debug!(
"Converted constraint evaluations into {} composition polynomial columns of degree {} in {} ms",
composition_poly.num_columns(),
composition_poly.column_degree(),
now.elapsed().as_millis()
);
#[cfg(feature = "std")]
let now = Instant::now();
let composed_evaluations = composition_poly.evaluate(&domain);
#[cfg(feature = "std")]
debug!(
"Evaluated composition polynomial columns over LDE domain (2^{} elements) in {} ms",
log2(composed_evaluations[0].len()),
now.elapsed().as_millis()
);
#[cfg(feature = "std")]
let now = Instant::now();
let constraint_commitment = ConstraintCommitment::<E, H>::new(composed_evaluations);
channel.commit_constraints(constraint_commitment.root());
#[cfg(feature = "std")]
debug!(
"Committed to composed evaluations by building a Merkle tree of depth {} in {} ms",
constraint_commitment.tree_depth(),
now.elapsed().as_millis()
);
#[cfg(feature = "std")]
let now = Instant::now();
let z = channel.get_ood_point();
let ood_frame = trace_polys.get_ood_frame(z);
channel.send_ood_evaluation_frame(&ood_frame);
let ood_evaluations = composition_poly.evaluate_at(z);
channel.send_ood_constraint_evaluations(&ood_evaluations);
let deep_coefficients = channel.get_deep_composition_coeffs();
let mut deep_composition_poly = DeepCompositionPoly::new(&air, z, deep_coefficients);
deep_composition_poly.add_trace_polys(trace_polys, ood_frame);
deep_composition_poly.add_composition_poly(composition_poly, ood_evaluations);
deep_composition_poly.adjust_degree();
#[cfg(feature = "std")]
debug!(
"Built DEEP composition polynomial of degree {} in {} ms",
deep_composition_poly.degree(),
now.elapsed().as_millis()
);
assert_eq!(domain.trace_length() - 1, deep_composition_poly.degree());
#[cfg(feature = "std")]
let now = Instant::now();
let deep_evaluations = deep_composition_poly.evaluate(&domain);
debug_assert_eq!(
domain.trace_length() - 1,
infer_degree(&deep_evaluations, domain.offset())
);
#[cfg(feature = "std")]
debug!(
"Evaluated DEEP composition polynomial over LDE domain (2^{} elements) in {} ms",
log2(domain.lde_domain_size()),
now.elapsed().as_millis()
);
#[cfg(feature = "std")]
let now = Instant::now();
let mut fri_prover = FriProver::new(air.options().to_fri_options());
fri_prover.build_layers(&mut channel, deep_evaluations);
#[cfg(feature = "std")]
debug!(
"Computed {} FRI layers from composition polynomial evaluations in {} ms",
fri_prover.num_layers(),
now.elapsed().as_millis()
);
#[cfg(feature = "std")]
let now = Instant::now();
channel.grind_query_seed();
let query_positions = channel.get_query_positions();
#[cfg(feature = "std")]
debug!(
"Determined {} query positions in {} ms",
query_positions.len(),
now.elapsed().as_millis()
);
#[cfg(feature = "std")]
let now = Instant::now();
let fri_proof = fri_prover.build_proof(&query_positions);
let trace_queries = extended_trace.query(trace_tree, &query_positions);
let constraint_queries = constraint_commitment.query(&query_positions);
let proof = channel.build_proof(trace_queries, constraint_queries, fri_proof);
#[cfg(feature = "std")]
debug!("Built proof object in {} ms", now.elapsed().as_millis());
Ok(proof)
}