nova-snark 0.69.0

High-speed recursive arguments from folding schemes
Documentation
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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
//! The `circuit2` module implements the optimal Poseidon hash circuit.

use super::{
  hash_type::HashType,
  matrix::Matrix,
  mds::SparseMatrix,
  poseidon_inner::{Arity, PoseidonConstants},
};
use crate::frontend::{
  num::{self, AllocatedNum},
  Boolean, ConstraintSystem, LinearCombination, SynthesisError,
};
use ff::PrimeField;
use std::marker::PhantomData;

/// Similar to `num::Num`, we use `Elt` to accumulate both values and linear combinations, then eventually
/// extract into a `num::AllocatedNum`, enforcing that the linear combination corresponds to the result.
#[derive(Clone)]
pub enum Elt<Scalar: PrimeField> {
  /// [`AllocatedNum`] variant
  Allocated(AllocatedNum<Scalar>),
  /// [`num::Num`] variant
  Num(num::Num<Scalar>),
}

impl<Scalar: PrimeField> From<AllocatedNum<Scalar>> for Elt<Scalar> {
  fn from(allocated: AllocatedNum<Scalar>) -> Self {
    Self::Allocated(allocated)
  }
}

impl<Scalar: PrimeField> Elt<Scalar> {
  /// Create an Elt from a scalar value.
  pub fn num_from_fr<CS: ConstraintSystem<Scalar>>(fr: Scalar) -> Self {
    let num = num::Num::<Scalar>::zero();
    Self::Num(num.add_bool_with_coeff(CS::one(), &Boolean::Constant(true), fr))
  }

  /// Ensure Elt is allocated as a fresh variable with an equality constraint.
  /// Always allocates a new variable and constrains it equal to the current
  /// value, guaranteeing consistent R1CS variable count regardless of whether
  /// `self` is `Allocated` or `Num`.
  pub fn ensure_allocated<CS: ConstraintSystem<Scalar>>(
    &self,
    cs: &mut CS,
  ) -> Result<AllocatedNum<Scalar>, SynthesisError> {
    let v = AllocatedNum::alloc(cs.namespace(|| "ensure_allocated"), || {
      self.val().ok_or(SynthesisError::AssignmentMissing)
    })?;

    cs.enforce(
      || "enforce allocation preserves value".to_string(),
      |_| self.lc(),
      |lc| lc + CS::one(),
      |lc| lc + v.get_variable(),
    );
    Ok(v)
  }

  /// Get the value of the Elt.
  pub fn val(&self) -> Option<Scalar> {
    match self {
      Self::Allocated(v) => v.get_value(),
      Self::Num(num) => num.get_value(),
    }
  }

  /// Get the [`LinearCombination`]  of the Elt.
  pub fn lc(&self) -> LinearCombination<Scalar> {
    match self {
      Self::Num(num) => num.lc(Scalar::ONE),
      Self::Allocated(v) => LinearCombination::<Scalar>::zero() + v.get_variable(),
    }
  }

  /// Add two Elts and return Elt::Num tracking the calculation.
  #[allow(clippy::should_implement_trait)]
  pub fn add(self, other: Elt<Scalar>) -> Result<Elt<Scalar>, SynthesisError> {
    match (self, other) {
      (Elt::Num(a), Elt::Num(b)) => Ok(Elt::Num(a.add(&b))),
      (a, b) => Ok(Elt::Num(a.num().add(&b.num()))),
    }
  }

  /// Add two Elts and return Elt::Num tracking the calculation.
  pub fn add_ref(self, other: &Elt<Scalar>) -> Result<Elt<Scalar>, SynthesisError> {
    match (self, other) {
      (Elt::Num(a), Elt::Num(b)) => Ok(Elt::Num(a.add(b))),
      (a, b) => Ok(Elt::Num(a.num().add(&b.num()))),
    }
  }

  /// Scale
  pub fn scale<CS: ConstraintSystem<Scalar>>(
    self,
    scalar: Scalar,
  ) -> Result<Elt<Scalar>, SynthesisError> {
    match self {
      Elt::Num(num) => Ok(Elt::Num(num.scale(scalar))),
      Elt::Allocated(a) => Elt::Num(a.into()).scale::<CS>(scalar),
    }
  }

  /// Square
  pub fn square<CS: ConstraintSystem<Scalar>>(
    &self,
    mut cs: CS,
  ) -> Result<AllocatedNum<Scalar>, SynthesisError> {
    match self {
      Elt::Num(num) => {
        let allocated = AllocatedNum::alloc(&mut cs.namespace(|| "squared num"), || {
          num
            .get_value()
            .ok_or(SynthesisError::AssignmentMissing)
            .map(|tmp| tmp * tmp)
        })?;
        cs.enforce(
          || "squaring constraint",
          |_| num.lc(Scalar::ONE),
          |_| num.lc(Scalar::ONE),
          |lc| lc + allocated.get_variable(),
        );
        Ok(allocated)
      }
      Elt::Allocated(a) => a.square(cs),
    }
  }

  /// Return inner Num.
  pub fn num(&self) -> num::Num<Scalar> {
    match self {
      Elt::Num(num) => num.clone(),
      Elt::Allocated(a) => a.clone().into(),
    }
  }
}

/// Circuit for Poseidon hash.
pub struct PoseidonCircuit2<'a, Scalar, A>
where
  Scalar: PrimeField,
  A: Arity<Scalar>,
{
  constants_offset: usize,
  width: usize,
  pub(crate) elements: Vec<Elt<Scalar>>,
  pub(crate) pos: usize,
  current_round: usize,
  constants: &'a PoseidonConstants<Scalar, A>,
  /// When true, materializes non-S-boxed elements each partial round to reduce R1CS non-zeros.
  pub(crate) compact: bool,
  _w: PhantomData<A>,
}

/// PoseidonCircuit2 implementation.
impl<'a, Scalar, A> PoseidonCircuit2<'a, Scalar, A>
where
  Scalar: PrimeField,
  A: Arity<Scalar>,
{
  /// Create a new Poseidon hasher for `preimage`.
  pub fn new(elements: Vec<Elt<Scalar>>, constants: &'a PoseidonConstants<Scalar, A>) -> Self {
    let width = constants.width();

    PoseidonCircuit2 {
      constants_offset: 0,
      width,
      elements,
      pos: 1,
      current_round: 0,
      constants,
      compact: false,
      _w: PhantomData::<A>,
    }
  }

  pub fn new_empty<CS: ConstraintSystem<Scalar>>(
    constants: &'a PoseidonConstants<Scalar, A>,
  ) -> Self {
    let elements = Self::initial_elements::<CS>();
    Self::new(elements, constants)
  }

  /// Enable compact mode: materializes non-S-boxed elements each partial round
  /// to reduce R1CS non-zeros at the cost of extra constraints.
  pub fn set_compact(&mut self, compact: bool) {
    self.compact = compact;
  }

  pub fn hash<CS: ConstraintSystem<Scalar>>(
    &mut self,
    cs: &mut CS,
  ) -> Result<Elt<Scalar>, SynthesisError> {
    self.full_round(cs.namespace(|| "first round"), true, false)?;

    for i in 1..self.constants.full_rounds / 2 {
      self.full_round(
        cs.namespace(|| format!("initial full round {i}")),
        false,
        false,
      )?;
    }

    for i in 0..self.constants.partial_rounds {
      self.partial_round(cs.namespace(|| format!("partial round {i}")))?;
    }

    for i in 0..(self.constants.full_rounds / 2) - 1 {
      self.full_round(
        cs.namespace(|| format!("final full round {i}")),
        false,
        false,
      )?;
    }
    self.full_round(cs.namespace(|| "terminal full round"), false, true)?;

    let elt = self.elements[1].clone();
    self.reset_offsets();

    Ok(elt)
  }

  pub fn apply_padding<CS: ConstraintSystem<Scalar>>(&mut self) {
    if let HashType::ConstantLength(l) = self.constants.hash_type {
      let final_pos = 1 + (l % self.constants.arity());

      assert_eq!(
        self.pos, final_pos,
        "preimage length does not match constant length required for hash"
      );
    };
    match self.constants.hash_type {
      HashType::ConstantLength(_) | HashType::Encryption => {
        for elt in self.elements[self.pos..].iter_mut() {
          *elt = Elt::num_from_fr::<CS>(Scalar::ZERO);
        }
        self.pos = self.elements.len();
      }
      HashType::VariableLength => todo!(),
      _ => (), // incl HashType::Sponge
    }
  }

  fn full_round<CS: ConstraintSystem<Scalar>>(
    &mut self,
    mut cs: CS,
    first_round: bool,
    last_round: bool,
  ) -> Result<(), SynthesisError> {
    let mut constants_offset = self.constants_offset;

    let pre_round_keys = if first_round {
      (0..self.width)
        .map(|i| self.constants.compressed_round_constants[constants_offset + i])
        .collect::<Vec<_>>()
    } else {
      Vec::new()
    };
    constants_offset += pre_round_keys.len();

    let post_round_keys = if first_round || !last_round {
      (0..self.width)
        .map(|i| self.constants.compressed_round_constants[constants_offset + i])
        .collect::<Vec<_>>()
    } else {
      Vec::new()
    };
    constants_offset += post_round_keys.len();

    // Apply the quintic S-Box to all elements
    for i in 0..self.elements.len() {
      let pre_round_key = if first_round {
        let rk = pre_round_keys[i];
        Some(rk)
      } else {
        None
      };

      let post_round_key = if first_round || !last_round {
        let rk = post_round_keys[i];
        Some(rk)
      } else {
        None
      };

      if first_round {
        {
          self.elements[i] = quintic_s_box_pre_add(
            cs.namespace(|| format!("quintic s-box {i}")),
            &self.elements[i],
            pre_round_key,
            post_round_key,
          )?;
        }
      } else {
        self.elements[i] = quintic_s_box(
          cs.namespace(|| format!("quintic s-box {i}")),
          &self.elements[i],
          post_round_key,
        )?;
      }
    }
    self.constants_offset = constants_offset;

    // Multiply the elements by the constant MDS matrix
    self.product_mds::<CS>()?;
    Ok(())
  }

  fn partial_round<CS: ConstraintSystem<Scalar>>(
    &mut self,
    mut cs: CS,
  ) -> Result<(), SynthesisError> {
    let round_key = self.constants.compressed_round_constants[self.constants_offset];
    self.constants_offset += 1;
    // Apply the quintic S-Box to the first element.
    self.elements[0] = quintic_s_box(
      cs.namespace(|| "solitary quintic s-box"),
      &self.elements[0],
      Some(round_key),
    )?;

    // Multiply the elements by the constant MDS matrix
    self.product_mds::<CS>()?;

    // In compact mode, materialize non-S-boxed elements to cap LC term growth.
    // Without this, elements[1..] accumulate ~1 LC term per partial round,
    // reaching ~58 terms after 55 rounds, which inflates R1CS non-zeros.
    if self.compact {
      for i in 1..self.width {
        let allocated =
          self.elements[i].ensure_allocated(&mut cs.namespace(|| format!("materialize {i}")))?;
        self.elements[i] = Elt::Allocated(allocated);
      }
    }

    Ok(())
  }

  fn product_mds_m<CS: ConstraintSystem<Scalar>>(&mut self) -> Result<(), SynthesisError> {
    self.product_mds_with_matrix::<CS>(&self.constants.mds_matrices.m)
  }

  /// Set the provided elements with the result of the product between the elements and the appropriate
  /// MDS matrix.
  #[allow(clippy::collapsible_else_if)]
  fn product_mds<CS: ConstraintSystem<Scalar>>(&mut self) -> Result<(), SynthesisError> {
    let full_half = self.constants.half_full_rounds;
    let sparse_offset = full_half - 1;
    if self.current_round == sparse_offset {
      self.product_mds_with_matrix::<CS>(&self.constants.pre_sparse_matrix)?;
    } else {
      if (self.current_round > sparse_offset)
        && (self.current_round < full_half + self.constants.partial_rounds)
      {
        let index = self.current_round - sparse_offset - 1;
        let sparse_matrix = &self.constants.sparse_matrixes[index];

        self.product_mds_with_sparse_matrix::<CS>(sparse_matrix)?;
      } else {
        self.product_mds_m::<CS>()?;
      }
    };

    self.current_round += 1;
    Ok(())
  }

  #[allow(clippy::ptr_arg, clippy::needless_range_loop)]
  fn product_mds_with_matrix<CS: ConstraintSystem<Scalar>>(
    &mut self,
    matrix: &Matrix<Scalar>,
  ) -> Result<(), SynthesisError> {
    let mut result: Vec<Elt<Scalar>> = Vec::with_capacity(self.constants.width());

    for j in 0..self.constants.width() {
      let column = (0..self.constants.width())
        .map(|i| matrix[i][j])
        .collect::<Vec<_>>();

      let product = scalar_product::<Scalar, CS>(self.elements.as_slice(), &column)?;

      result.push(product);
    }

    self.elements = result;

    Ok(())
  }

  // Sparse matrix in this context means one of the form, M''.
  fn product_mds_with_sparse_matrix<CS: ConstraintSystem<Scalar>>(
    &mut self,
    matrix: &SparseMatrix<Scalar>,
  ) -> Result<(), SynthesisError> {
    let mut result: Vec<Elt<Scalar>> = Vec::with_capacity(self.constants.width());

    result.push(scalar_product::<Scalar, CS>(
      self.elements.as_slice(),
      &matrix.w_hat,
    )?);

    for j in 1..self.width {
      result.push(self.elements[j].clone().add(
        self.elements[0]
                        .clone() // First row is dense.
                        .scale::<CS>(matrix.v_rest[j - 1])?, // Except for first row/column, diagonals are one.
      )?);
    }

    self.elements = result;

    Ok(())
  }

  fn initial_elements<CS: ConstraintSystem<Scalar>>() -> Vec<Elt<Scalar>> {
    std::iter::repeat(Elt::num_from_fr::<CS>(Scalar::ZERO))
      .take(A::to_usize() + 1)
      .collect()
  }

  pub fn reset_offsets(&mut self) {
    self.constants_offset = 0;
    self.current_round = 0;
    self.pos = 1;
  }
}

/// Compute l^5 and enforce constraint. If round_key is supplied, add it to result.
fn quintic_s_box<CS: ConstraintSystem<Scalar>, Scalar: PrimeField>(
  mut cs: CS,
  l: &Elt<Scalar>,
  post_round_key: Option<Scalar>,
) -> Result<Elt<Scalar>, SynthesisError> {
  // If round_key was supplied, add it after all exponentiation.
  let l2 = l.square(cs.namespace(|| "l^2"))?;
  let l4 = l2.square(cs.namespace(|| "l^4"))?;
  let l5 = mul_sum(
    cs.namespace(|| "(l4 * l) + rk)"),
    &l4,
    l,
    None,
    post_round_key,
    true,
  );

  Ok(Elt::Allocated(l5?))
}

/// Compute l^5 and enforce constraint. If round_key is supplied, add it to l first.
fn quintic_s_box_pre_add<CS: ConstraintSystem<Scalar>, Scalar: PrimeField>(
  mut cs: CS,
  l: &Elt<Scalar>,
  pre_round_key: Option<Scalar>,
  post_round_key: Option<Scalar>,
) -> Result<Elt<Scalar>, SynthesisError> {
  if let (Some(pre_round_key), Some(post_round_key)) = (pre_round_key, post_round_key) {
    // If round_key was supplied, add it to l before squaring.
    let l2 = square_sum(cs.namespace(|| "(l+rk)^2"), pre_round_key, l, true)?;
    let l4 = l2.square(cs.namespace(|| "l^4"))?;
    let l5 = mul_sum(
      cs.namespace(|| "l4 * (l + rk)"),
      &l4,
      l,
      Some(pre_round_key),
      Some(post_round_key),
      true,
    );

    Ok(Elt::Allocated(l5?))
  } else {
    panic!("pre_round_key and post_round_key must both be provided.");
  }
}

/// Calculates square of sum and enforces that constraint.
pub fn square_sum<CS: ConstraintSystem<Scalar>, Scalar: PrimeField>(
  mut cs: CS,
  to_add: Scalar,
  elt: &Elt<Scalar>,
  enforce: bool,
) -> Result<AllocatedNum<Scalar>, SynthesisError> {
  let res = AllocatedNum::alloc(cs.namespace(|| "squared sum"), || {
    let mut tmp = elt.val().ok_or(SynthesisError::AssignmentMissing)?;
    tmp.add_assign(&to_add);
    tmp = tmp.square();
    Ok(tmp)
  })?;

  if enforce {
    cs.enforce(
      || "squared sum constraint",
      |_| elt.lc() + (to_add, CS::one()),
      |_| elt.lc() + (to_add, CS::one()),
      |lc| lc + res.get_variable(),
    );
  }
  Ok(res)
}

/// Calculates (a * (pre_add + b)) + post_add — and enforces that constraint.
#[allow(clippy::collapsible_else_if)]
pub fn mul_sum<CS: ConstraintSystem<Scalar>, Scalar: PrimeField>(
  mut cs: CS,
  a: &AllocatedNum<Scalar>,
  b: &Elt<Scalar>,
  pre_add: Option<Scalar>,
  post_add: Option<Scalar>,
  enforce: bool,
) -> Result<AllocatedNum<Scalar>, SynthesisError> {
  let res = AllocatedNum::alloc(cs.namespace(|| "mul_sum"), || {
    let mut tmp = b.val().ok_or(SynthesisError::AssignmentMissing)?;
    if let Some(x) = pre_add {
      tmp.add_assign(&x);
    }
    tmp.mul_assign(&a.get_value().ok_or(SynthesisError::AssignmentMissing)?);
    if let Some(x) = post_add {
      tmp.add_assign(&x);
    }

    Ok(tmp)
  })?;

  if enforce {
    if let Some(x) = post_add {
      let neg = -x;

      if let Some(pre) = pre_add {
        cs.enforce(
          || "mul sum constraint pre-post-add",
          |_| b.lc() + (pre, CS::one()),
          |lc| lc + a.get_variable(),
          |lc| lc + res.get_variable() + (neg, CS::one()),
        );
      } else {
        cs.enforce(
          || "mul sum constraint post-add",
          |_| b.lc(),
          |lc| lc + a.get_variable(),
          |lc| lc + res.get_variable() + (neg, CS::one()),
        );
      }
    } else {
      if let Some(pre) = pre_add {
        cs.enforce(
          || "mul sum constraint pre-add",
          |_| b.lc() + (pre, CS::one()),
          |lc| lc + a.get_variable(),
          |lc| lc + res.get_variable(),
        );
      } else {
        cs.enforce(
          || "mul sum constraint",
          |_| b.lc(),
          |lc| lc + a.get_variable(),
          |lc| lc + res.get_variable(),
        );
      }
    }
  }
  Ok(res)
}

fn scalar_product<Scalar: PrimeField, CS: ConstraintSystem<Scalar>>(
  elts: &[Elt<Scalar>],
  scalars: &[Scalar],
) -> Result<Elt<Scalar>, SynthesisError> {
  elts
    .iter()
    .zip(scalars)
    .try_fold(Elt::Num(num::Num::zero()), |acc, (elt, &scalar)| {
      acc.add(elt.clone().scale::<CS>(scalar)?)
    })
}