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
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
//! Opening proof protocol - prover and verifier state management
//!
//! This module contains the state machines for the interactive Dory protocol.
//! The prover maintains vectors and computes messages, while the verifier
//! maintains accumulated values and verifies messages.
#![allow(missing_docs)]
#![allow(clippy::missing_errors_doc)]
#![allow(clippy::missing_panics_doc)]
use crate::error::DoryError;
use crate::messages::*;
use crate::mode::{Mode, Transparent};
use crate::primitives::arithmetic::{DoryRoutines, Field, Group, PairingCurve};
use crate::setup::{ProverSetup, VerifierSetup};
use std::marker::PhantomData;
#[cfg(feature = "zk")]
use crate::primitives::transcript::Transcript;
type Scalar<E> = <<E as PairingCurve>::G1 as Group>::Scalar;
/// Prover state for the Dory opening protocol
///
/// Maintains the current state of the prover during the interactive protocol.
/// The state consists of vectors that get folded in each round.
pub struct DoryProverState<'a, E: PairingCurve, M: Mode = Transparent> {
/// Current v1 vector (G1 elements)
v1: Vec<E::G1>,
/// Current v2 vector (G2 elements)
v2: Vec<E::G2>,
/// For first round only: scalars used to construct v2 from fixed base h2
v2_scalars: Option<Vec<Scalar<E>>>,
/// Current s1 vector (scalars)
s1: Vec<Scalar<E>>,
/// Current s2 vector (scalars)
s2: Vec<Scalar<E>>,
/// Number of rounds remaining (log₂ of vector length)
num_rounds: usize,
/// Reference to prover setup
setup: &'a ProverSetup<E>,
// ZK accumulated blinds (zero in Transparent mode)
r_c: Scalar<E>,
r_d1: Scalar<E>,
r_d2: Scalar<E>,
r_e1: Scalar<E>,
r_e2: Scalar<E>,
// Per-round blinds stored between compute and apply
round_d1: [Scalar<E>; 2],
round_d2: [Scalar<E>; 2],
round_c: [Scalar<E>; 2],
round_e1: [Scalar<E>; 2],
round_e2: [Scalar<E>; 2],
_mode: PhantomData<M>,
}
/// Verifier state for the Dory opening protocol
///
/// Maintains the current accumulated values during verification.
/// These values get updated based on prover messages and challenges.
pub struct DoryVerifierState<E: PairingCurve> {
/// Inner product accumulator
c: E::GT,
/// Commitment to v1: ⟨v1, Γ2⟩
d1: E::GT,
/// Commitment to v2: ⟨Γ1, v2⟩
d2: E::GT,
/// Extended protocol: commitment to s1
e1: E::G1,
/// Extended protocol: commitment to s2
e2: E::G2,
/// Initial e1 from VMV message
/// Used in verify_final to batch the VMV constraint: D₂_init = e(E₁_init, Γ₂₀)
e1_init: E::G1,
/// Initial d2 from VMV message
/// Used in verify_final to batch the VMV constraint: D₂_init = e(E₁_init, Γ₂₀)
d2_init: E::GT,
/// Accumulated scalar for s1 after folding across rounds
s1_acc: Scalar<E>,
/// Accumulated scalar for s2 after folding across rounds
s2_acc: Scalar<E>,
/// Per-round coordinates for s1 (length = num_rounds). Order matches folding order.
s1_coords: Vec<Scalar<E>>,
/// Per-round coordinates for s2 (length = num_rounds). Order matches folding order.
s2_coords: Vec<Scalar<E>>,
/// Number of rounds remaining for indexing setup arrays
num_rounds: usize,
/// Reference to verifier setup
setup: VerifierSetup<E>,
}
impl<'a, E: PairingCurve, M: Mode> DoryProverState<'a, E, M>
where
<E::G1 as Group>::Scalar: Field,
E::G2: Group<Scalar = <E::G1 as Group>::Scalar>,
E::GT: Group<Scalar = <E::G1 as Group>::Scalar>,
{
/// Create new prover state
///
/// # Parameters
/// - `v1`: Initial G1 vector
/// - `v2`: Initial G2 vector
/// - `v2_scalars`: Optional scalars where v2 = h2 * scalars; enables MSM+pair in first round
/// - `s1`: Initial scalar vector for G1 side
/// - `s2`: Initial scalar vector for G2 side
/// - `setup`: Prover setup parameters
pub fn new(
v1: Vec<E::G1>,
v2: Vec<E::G2>,
v2_scalars: Option<Vec<Scalar<E>>>,
s1: Vec<Scalar<E>>,
s2: Vec<Scalar<E>>,
setup: &'a ProverSetup<E>,
) -> Self {
debug_assert_eq!(v1.len(), v2.len(), "v1 and v2 must have equal length");
debug_assert_eq!(v1.len(), s1.len(), "v1 and s1 must have equal length");
debug_assert_eq!(v1.len(), s2.len(), "v1 and s2 must have equal length");
debug_assert!(
v1.len().is_power_of_two(),
"vector length must be power of 2"
);
if let Some(sc) = v2_scalars.as_ref() {
debug_assert_eq!(sc.len(), v2.len(), "v2_scalars must match v2 length");
}
let num_rounds = v1.len().trailing_zeros() as usize;
let z = Scalar::<E>::zero();
Self {
v1,
v2,
v2_scalars,
s1,
s2,
num_rounds,
setup,
r_c: z,
r_d1: z,
r_d2: z,
r_e1: z,
r_e2: z,
round_d1: [z; 2],
round_d2: [z; 2],
round_c: [z; 2],
round_e1: [z; 2],
round_e2: [z; 2],
_mode: PhantomData,
}
}
/// Set initial VMV blinds (r_d1, r_c, r_d2, r_e1, r_e2).
pub fn set_initial_blinds(
&mut self,
r_d1: Scalar<E>,
r_c: Scalar<E>,
r_d2: Scalar<E>,
r_e1: Scalar<E>,
r_e2: Scalar<E>,
) {
(self.r_d1, self.r_c, self.r_d2, self.r_e1, self.r_e2) = (r_d1, r_c, r_d2, r_e1, r_e2);
}
/// Compute first reduce message for current round
///
/// Computes D1L, D1R, D2L, D2R, E1β, E2β based on current state.
#[tracing::instrument(skip_all, name = "DoryProverState::compute_first_message")]
pub fn compute_first_message<M1, M2>(&mut self) -> FirstReduceMessage<E::G1, E::G2, E::GT>
where
M1: DoryRoutines<E::G1>,
M2: DoryRoutines<E::G2>,
{
assert!(
self.num_rounds > 0,
"Not enough rounds left in prover state"
);
let n2 = 1 << (self.num_rounds - 1); // n/2
// Split vectors into left and right halves
let (v1_l, v1_r) = self.v1.split_at(n2);
let (v2_l, v2_r) = self.v2.split_at(n2);
// Get collapsed generator vectors of length n/2
let g1_prime = &self.setup.g1_vec[..n2];
let g2_prime = &self.setup.g2_vec[..n2];
// Sample round blinds (zero in Transparent mode)
self.round_d1 = [M::sample(), M::sample()];
self.round_d2 = [M::sample(), M::sample()];
// D₁L = ⟨v₁L, Γ₂'⟩, D₁R = ⟨v₁R, Γ₂'⟩
let ht = &self.setup.ht;
let d1_left = M::mask(
E::multi_pair_g2_setup(v1_l, g2_prime),
ht,
&self.round_d1[0],
);
let d1_right = M::mask(
E::multi_pair_g2_setup(v1_r, g2_prime),
ht,
&self.round_d1[1],
);
// D₂L = ⟨Γ₁', v₂L⟩, D₂R = ⟨Γ₁', v₂R⟩
// If v2 was constructed as h2 * scalars (first round), compute MSM(Γ₁', scalars) then one pairing.
let (d2_left_base, d2_right_base) = if let Some(scalars) = self.v2_scalars.as_ref() {
let (s_l, s_r) = scalars.split_at(n2);
let sum_left = M1::msm(g1_prime, s_l);
let sum_right = M1::msm(g1_prime, s_r);
let g2_fin = &self.setup.g2_vec[0];
(E::pair(&sum_left, g2_fin), E::pair(&sum_right, g2_fin))
} else {
(
E::multi_pair_g1_setup(g1_prime, v2_l),
E::multi_pair_g1_setup(g1_prime, v2_r),
)
};
let d2_left = M::mask(d2_left_base, ht, &self.round_d2[0]);
let d2_right = M::mask(d2_right_base, ht, &self.round_d2[1]);
// Compute E values for extended protocol: MSMs with scalar vectors
// E₁β = ⟨Γ₁, s₂⟩
let e1_beta = M1::msm(&self.setup.g1_vec[..1 << self.num_rounds], &self.s2[..]);
// E₂β = ⟨Γ₂, s₁⟩
let e2_beta = M2::msm(&self.setup.g2_vec[..1 << self.num_rounds], &self.s1[..]);
FirstReduceMessage {
d1_left,
d1_right,
d2_left,
d2_right,
e1_beta,
e2_beta,
}
}
/// Apply first challenge (beta) and combine vectors
///
/// Updates the state by combining with generators scaled by beta.
#[tracing::instrument(skip_all, name = "DoryProverState::apply_first_challenge")]
pub fn apply_first_challenge<M1, M2>(&mut self, beta: &Scalar<E>)
where
M1: DoryRoutines<E::G1>,
M2: DoryRoutines<E::G2>,
{
let beta_inv = beta.inv().expect("beta must be invertible");
let n = 1 << self.num_rounds;
// v₁ ← v₁ + β·Γ₁, v₂ ← v₂ + β⁻¹·Γ₂
M1::fixed_scalar_mul_bases_then_add(&self.setup.g1_vec[..n], &mut self.v1, beta);
M2::fixed_scalar_mul_bases_then_add(&self.setup.g2_vec[..n], &mut self.v2, &beta_inv);
self.v2_scalars = None;
self.r_c = self.r_c + self.r_d2 * beta + self.r_d1 * beta_inv;
}
/// Compute second reduce message for current round
///
/// Computes C+, C-, E1+, E1-, E2+, E2- based on current state.
#[tracing::instrument(skip_all, name = "DoryProverState::compute_second_message")]
pub fn compute_second_message<M1, M2>(&mut self) -> SecondReduceMessage<E::G1, E::G2, E::GT>
where
M1: DoryRoutines<E::G1>,
M2: DoryRoutines<E::G2>,
{
let n2 = 1 << (self.num_rounds - 1); // n/2
// Split all vectors into left and right halves
let (v1_l, v1_r) = self.v1.split_at(n2);
let (v2_l, v2_r) = self.v2.split_at(n2);
let (s1_l, s1_r) = self.s1.split_at(n2);
let (s2_l, s2_r) = self.s2.split_at(n2);
self.round_c = [M::sample(), M::sample()];
self.round_e1 = [M::sample(), M::sample()];
self.round_e2 = [M::sample(), M::sample()];
// C₊ = ⟨v₁L, v₂R⟩, C₋ = ⟨v₁R, v₂L⟩
let ht = &self.setup.ht;
let c_plus = M::mask(E::multi_pair(v1_l, v2_r), ht, &self.round_c[0]);
let c_minus = M::mask(E::multi_pair(v1_r, v2_l), ht, &self.round_c[1]);
// Compute E terms for extended protocol: cross products with scalars
let e1_plus = M::mask(M1::msm(v1_l, s2_r), &self.setup.h1, &self.round_e1[0]);
let e1_minus = M::mask(M1::msm(v1_r, s2_l), &self.setup.h1, &self.round_e1[1]);
let e2_plus = M::mask(M2::msm(v2_r, s1_l), &self.setup.h2, &self.round_e2[0]);
let e2_minus = M::mask(M2::msm(v2_l, s1_r), &self.setup.h2, &self.round_e2[1]);
SecondReduceMessage {
c_plus,
c_minus,
e1_plus,
e1_minus,
e2_plus,
e2_minus,
}
}
/// Apply second challenge (alpha) and fold vectors
///
/// Reduces the vector size by half using the alpha challenge.
#[tracing::instrument(skip_all, name = "DoryProverState::apply_second_challenge")]
pub fn apply_second_challenge<M1: DoryRoutines<E::G1>, M2: DoryRoutines<E::G2>>(
&mut self,
alpha: &Scalar<E>,
) {
let alpha_inv = alpha.inv().expect("alpha must be invertible");
let n2 = 1 << (self.num_rounds - 1); // n/2
// Fold v₁: v₁ ← α·v₁L + v₁R
let (v1_l, v1_r) = self.v1.split_at_mut(n2);
M1::fixed_scalar_mul_vs_then_add(v1_l, v1_r, alpha);
self.v1.truncate(n2);
// Fold v₂: v₂ ← α⁻¹·v₂L + v₂R
let (v2_l, v2_r) = self.v2.split_at_mut(n2);
M2::fixed_scalar_mul_vs_then_add(v2_l, v2_r, &alpha_inv);
self.v2.truncate(n2);
// Fold s₁: s₁ ← α·s₁L + s₁R
let (s1_l, s1_r) = self.s1.split_at_mut(n2);
M1::fold_field_vectors(s1_l, s1_r, alpha);
self.s1.truncate(n2);
// Fold s₂: s₂ ← α⁻¹·s₂L + s₂R
let (s2_l, s2_r) = self.s2.split_at_mut(n2);
M1::fold_field_vectors(s2_l, s2_r, &alpha_inv);
self.s2.truncate(n2);
self.r_c = self.r_c + self.round_c[0] * alpha + self.round_c[1] * alpha_inv;
self.r_d1 = self.round_d1[0] * alpha + self.round_d1[1];
self.r_d2 = self.round_d2[0] * alpha_inv + self.round_d2[1];
self.r_e1 = self.r_e1 + self.round_e1[0] * alpha + self.round_e1[1] * alpha_inv;
self.r_e2 = self.r_e2 + self.round_e2[0] * alpha + self.round_e2[1] * alpha_inv;
self.num_rounds -= 1;
}
/// Compute final scalar product message
///
/// Applies fold-scalars transformation and returns the final E1, E2 elements.
/// Must be called when num_rounds=0 (vectors are size 1).
///
/// In ZK mode, E₁ and E₂ are additionally blinded with fresh randomness so
/// that the folded vectors `v₁[0]`, `v₂[0]` cannot be recovered from the
/// proof.
#[tracing::instrument(skip_all, name = "DoryProverState::compute_final_message")]
pub fn compute_final_message<M1, M2>(
&mut self,
gamma: &Scalar<E>,
) -> ScalarProductMessage<E::G1, E::G2>
where
M1: DoryRoutines<E::G1>,
M2: DoryRoutines<E::G2>,
{
debug_assert_eq!(self.num_rounds, 0, "num_rounds must be 0 for final message");
debug_assert_eq!(self.v1.len(), 1, "v1 must have length 1");
debug_assert_eq!(self.v2.len(), 1, "v2 must have length 1");
let gamma_inv = gamma.inv().expect("gamma must be invertible");
let r_final1: Scalar<E> = M::sample();
let r_final2: Scalar<E> = M::sample();
// E₁ = v₁ + (γ·s₁ + r_final1)·H₁
let gamma_s1 = *gamma * self.s1[0] + r_final1;
let e1 = self.v1[0] + gamma_s1 * self.setup.h1;
// E₂ = v₂ + (γ⁻¹·s₂ + r_final2)·H₂
let gamma_inv_s2 = gamma_inv * self.s2[0] + r_final2;
let e2 = self.v2[0] + self.setup.h2.scale(&gamma_inv_s2);
self.r_c = self.r_c + self.r_e2 * gamma + self.r_e1 * gamma_inv;
ScalarProductMessage { e1, e2 }
}
/// Generate ZK scalar product proof. Must be called BEFORE `compute_final_message`.
#[cfg(feature = "zk")]
pub fn scalar_product_proof<T: Transcript<Curve = E>>(
&self,
transcript: &mut T,
) -> ScalarProductProof<E::G1, E::G2, Scalar<E>, E::GT> {
let (v1, v2) = (self.v1[0], self.v2[0]);
let (g1, g2) = (self.setup.g1_vec[0], self.setup.g2_vec[0]);
let ht = &self.setup.ht;
let r = || Scalar::<E>::random();
let (sd1, sd2) = (r(), r());
let (d1, d2) = (sd1 * g1, g2.scale(&sd2));
let (rp1, rp2, rq, rr) = (r(), r(), r(), r());
let p1 = E::pair(&d1, &g2) + ht.scale(&rp1);
let p2 = E::pair(&g1, &d2) + ht.scale(&rp2);
let q = E::pair(&d1, &v2) + E::pair(&v1, &d2) + ht.scale(&rq);
let rr_val = E::pair(&d1, &d2) + ht.scale(&rr);
for (label, val) in [
(b"sigma_p1" as &[u8], &p1),
(b"sigma_p2", &p2),
(b"sigma_q", &q),
(b"sigma_r", &rr_val),
] {
transcript.append_serde(label, val);
}
let c = transcript.challenge_scalar(b"sigma_c");
ScalarProductProof {
p1,
p2,
q,
r: rr_val,
e1: d1 + c * v1,
e2: d2 + v2.scale(&c),
r1: rp1 + c * self.r_d1,
r2: rp2 + c * self.r_d2,
r3: rr + c * rq + c * c * self.r_c,
}
}
}
/// Generate Sigma1 proof: proves knowledge of (y, rE2, ry).
#[cfg(feature = "zk")]
pub fn generate_sigma1_proof<E, T>(
y: &Scalar<E>,
r_e2: &Scalar<E>,
r_y: &Scalar<E>,
setup: &ProverSetup<E>,
transcript: &mut T,
) -> Sigma1Proof<E::G1, E::G2, Scalar<E>>
where
E: PairingCurve,
T: Transcript<Curve = E>,
Scalar<E>: Field,
E::G2: Group<Scalar = Scalar<E>>,
{
let (g2_fin, g1_fin) = (&setup.g2_vec[0], &setup.g1_vec[0]);
let (k1, k2, k3) = (
Scalar::<E>::random(),
Scalar::<E>::random(),
Scalar::<E>::random(),
);
let a1 = g2_fin.scale(&k1) + setup.h2.scale(&k2);
let a2 = k1 * g1_fin + k3 * setup.h1;
transcript.append_serde(b"sigma1_a1", &a1);
transcript.append_serde(b"sigma1_a2", &a2);
let c = transcript.challenge_scalar(b"sigma1_c");
Sigma1Proof {
a1,
a2,
z1: k1 + c * y,
z2: k2 + c * r_e2,
z3: k3 + c * r_y,
}
}
/// Verify Sigma1 proof.
#[cfg(feature = "zk")]
pub fn verify_sigma1_proof<E: PairingCurve, T: Transcript<Curve = E>>(
e2: &E::G2,
y_commit: &E::G1,
proof: &Sigma1Proof<E::G1, E::G2, Scalar<E>>,
setup: &VerifierSetup<E>,
transcript: &mut T,
) -> Result<(), DoryError>
where
Scalar<E>: Field,
E::G2: Group<Scalar = Scalar<E>>,
{
transcript.append_serde(b"sigma1_a1", &proof.a1);
transcript.append_serde(b"sigma1_a2", &proof.a2);
let c = transcript.challenge_scalar(b"sigma1_c");
if setup.g2_0.scale(&proof.z1) + setup.h2.scale(&proof.z2) != proof.a1 + e2.scale(&c) {
return Err(DoryError::InvalidProof);
}
if proof.z1 * setup.g1_0 + proof.z3 * setup.h1 != proof.a2 + c * y_commit {
return Err(DoryError::InvalidProof);
}
Ok(())
}
/// Generate Sigma2 proof: proves e(E1, Γ2,fin) - D2 = e(H1, t1·Γ2,fin + t2·H2).
#[cfg(feature = "zk")]
pub fn generate_sigma2_proof<E, T>(
t1: &Scalar<E>,
t2: &Scalar<E>,
setup: &ProverSetup<E>,
transcript: &mut T,
) -> Sigma2Proof<Scalar<E>, E::GT>
where
E: PairingCurve,
T: Transcript<Curve = E>,
Scalar<E>: Field,
E::G2: Group<Scalar = Scalar<E>>,
E::GT: Group<Scalar = Scalar<E>>,
{
let (k1, k2) = (Scalar::<E>::random(), Scalar::<E>::random());
let a = E::pair(
&setup.h1,
&(setup.g2_vec[0].scale(&k1) + setup.h2.scale(&k2)),
);
transcript.append_serde(b"sigma2_a", &a);
let c = transcript.challenge_scalar(b"sigma2_c");
Sigma2Proof {
a,
z1: k1 + c * t1,
z2: k2 + c * t2,
}
}
/// Verify Sigma2 proof.
#[cfg(feature = "zk")]
pub fn verify_sigma2_proof<E: PairingCurve, T: Transcript<Curve = E>>(
e1: &E::G1,
d2: &E::GT,
proof: &Sigma2Proof<Scalar<E>, E::GT>,
setup: &VerifierSetup<E>,
transcript: &mut T,
) -> Result<(), DoryError>
where
Scalar<E>: Field,
E::G2: Group<Scalar = Scalar<E>>,
E::GT: Group<Scalar = Scalar<E>>,
{
transcript.append_serde(b"sigma2_a", &proof.a);
let c = transcript.challenge_scalar(b"sigma2_c");
let expected = E::pair(e1, &setup.g2_0) - *d2;
let lhs = E::pair(
&setup.h1,
&(setup.g2_0.scale(&proof.z1) + setup.h2.scale(&proof.z2)),
);
if lhs == proof.a + expected.scale(&c) {
Ok(())
} else {
Err(DoryError::InvalidProof)
}
}
impl<E: PairingCurve> DoryVerifierState<E> {
/// Create new verifier state for O(1) accumulation.
///
/// `e1` and `d2` are stored both as initial values (for batched VMV check)
/// and as accumulators (updated during reduce rounds), since the VMV check
/// is deferred to the final batched pairing.
#[allow(clippy::too_many_arguments)]
pub fn new(
c: E::GT,
d1: E::GT,
d2: E::GT,
e1: E::G1,
e2: E::G2,
s1_coords: Vec<Scalar<E>>,
s2_coords: Vec<Scalar<E>>,
num_rounds: usize,
setup: VerifierSetup<E>,
) -> Self {
debug_assert_eq!(s1_coords.len(), num_rounds);
debug_assert_eq!(s2_coords.len(), num_rounds);
Self {
c,
d1,
d2,
e1,
e2,
e1_init: e1,
d2_init: d2,
s1_acc: Scalar::<E>::one(),
s2_acc: Scalar::<E>::one(),
s1_coords,
s2_coords,
num_rounds,
setup,
}
}
/// Process one round of the Dory-Reduce verification protocol
///
/// Takes both reduce messages and both challenges, updates all state values.
/// This implements the extended Dory-Reduce algorithm from sections 3.2 & 4.2.
#[tracing::instrument(skip_all, name = "DoryVerifierState::process_round")]
pub fn process_round(
&mut self,
first_msg: &FirstReduceMessage<E::G1, E::G2, E::GT>,
second_msg: &SecondReduceMessage<E::G1, E::G2, E::GT>,
alpha: &Scalar<E>,
beta: &Scalar<E>,
) -> Result<(), DoryError>
where
E::G2: Group<Scalar = Scalar<E>>,
E::GT: Group<Scalar = Scalar<E>>,
Scalar<E>: Field,
{
if self.num_rounds == 0 {
return Err(DoryError::InvalidProof);
}
let alpha_inv = alpha.inv().ok_or(DoryError::InvalidProof)?;
let beta_inv = beta.inv().ok_or(DoryError::InvalidProof)?;
// C' ← C + χᵢ + β·D₂ + β⁻¹·D₁ + α·C₊ + α⁻¹·C₋
self.c = self.c
+ self.setup.chi[self.num_rounds]
+ self.d2.scale(beta)
+ self.d1.scale(&beta_inv)
+ second_msg.c_plus.scale(alpha)
+ second_msg.c_minus.scale(&alpha_inv);
// D₁' ← α·D₁L + D₁R + αβ·Δ₁L + β·Δ₁R
let alpha_beta = *alpha * beta;
self.d1 = first_msg.d1_left.scale(alpha)
+ first_msg.d1_right
+ self.setup.delta_1l[self.num_rounds].scale(&alpha_beta)
+ self.setup.delta_1r[self.num_rounds].scale(beta);
// D₂' ← α⁻¹·D₂L + D₂R + α⁻¹β⁻¹·Δ₂L + β⁻¹·Δ₂R
let alpha_inv_beta_inv = alpha_inv * beta_inv;
self.d2 = first_msg.d2_left.scale(&alpha_inv)
+ first_msg.d2_right
+ self.setup.delta_2l[self.num_rounds].scale(&alpha_inv_beta_inv)
+ self.setup.delta_2r[self.num_rounds].scale(&beta_inv);
// E₁' ← E₁ + β·E₁β + α·E₁₊ + α⁻¹·E₁₋
self.e1 = self.e1
+ *beta * first_msg.e1_beta
+ *alpha * second_msg.e1_plus
+ alpha_inv * second_msg.e1_minus;
// E₂' ← E₂ + β⁻¹·E₂β + α·E₂₊ + α⁻¹·E₂₋
self.e2 = self.e2
+ first_msg.e2_beta.scale(&beta_inv)
+ second_msg.e2_plus.scale(alpha)
+ second_msg.e2_minus.scale(&alpha_inv);
// Folded scalars: s_acc *= (α·(1−coord) + coord) indexed MSB-first
let idx = self.num_rounds - 1;
let (y_t, x_t) = (self.s1_coords[idx], self.s2_coords[idx]);
let one = Scalar::<E>::one();
self.s1_acc = self.s1_acc * (*alpha * (one - y_t) + y_t);
self.s2_acc = self.s2_acc * (alpha_inv * (one - x_t) + x_t);
self.num_rounds -= 1;
Ok(())
}
/// Verify the final scalar product equation.
///
/// Must be called when `num_rounds == 0` after all reduce rounds are complete.
///
/// When `zk_data` is `None`, performs the transparent 4-pairing check.
/// When `zk_data` is `Some((sp, sigma_c))`, performs the ZK 1-pairing check.
///
/// # Non-optimized Protocol Equations
///
/// ## VMV Check (batched together with the final pairing check)
///
/// The VMV protocol requires: `D₂_init = e(E₁_init, Γ₂₀)`
/// (proven by the Sigma₂ proof in ZK mode, deferred here for batching in transparent mode).
///
/// ## Fold-Scalars Updates
///
/// ```text
/// C' ← C + (s₁·s₂)·HT + γ·e(H₁, E₂) + γ⁻¹·e(E₁, H₂)
/// D₁' ← D₁ + e(H₁, (s₁·γ)·Γ₂₀)
/// D₂' ← D₂ + e((s₂·γ⁻¹)·Γ₁₀, H₂)
/// ```
///
/// ## Final Verification
///
/// ```text
/// e(E₁ + d·Γ₁₀, E₂ + d⁻¹·Γ₂₀) = C' + χ₀ + d·D₂' + d⁻¹·D₁'
/// ```
///
/// # Transparent Mode — Multi-Pairing Check (4 ML + 1 FE)
///
/// ## Batching the VMV Check
///
/// We use random linear combination with challenge `d²` to defer the VMV check.
/// We use `d²` (not `d`) to ensure sufficient independence from the existing `d·D₂` term.
///
/// Soundness: `d` is derived from the transcript AFTER `D₂_init` and `E₁_init` are
/// committed, so if `D₂_init ≠ e(E₁_init, Γ₂₀)`, then with overwhelming probability
/// `T + d²·D₂_init ≠ multi_pair([...]) + d²·e(E₁_init, Γ₂₀)`.
///
/// ## Final Combined Check
///
/// The final check verifies both:
/// - (a) The fold-scalars/reduce protocol equation
/// - (b) The VMV constraint `D₂_init = e(E₁_init, Γ₂₀)`
///
/// Combined via: `(a) + d²·(b)` where `d` is the final challenge.
///
/// ```text
/// e(E₁_final + d·Γ₁₀, E₂_final + d⁻¹·Γ₂₀) [Pair 1: scalar product]
/// · e(H₁, (-γ)·(E₂_acc + (d⁻¹·s₁)·Γ₂₀)) [Pair 2: E₂ accumulator]
/// · e((-γ⁻¹)·(E₁_acc + (d·s₂)·Γ₁₀), H₂) [Pair 3: E₁ accumulator]
/// · e(d²·E₁_init, Γ₂₀) [Pair 4: deferred VMV]
/// = C + (s₁·s₂)·HT + χ₀ + d·D₂ + d⁻¹·D₁ + d²·D₂_init
/// ```
///
/// Note: Pairs 3 and 4 cannot be combined into 3 ML because they use different
/// G2 elements (H₂ vs Γ₂₀). This differs from the original Dory construction
/// where `D₂ = e(Γ₁·v, H₂)` allowed H₂-sharing.
///
/// # ZK Mode (1 ML + 1 FE)
///
/// In ZK mode, the scalar product proof replaces the transparent check with a
/// Sigma-protocol equation proving knowledge of (v₁, v₂) opening (C, D₁, D₂).
/// E-accumulator and VMV binding are handled separately by Sigma₁/Sigma₂ proofs
/// verified earlier in the protocol.
///
/// ```text
/// e(sp.e₁ + d·Γ₁₀, sp.e₂ + d⁻¹·Γ₂₀)
/// = χ₀ + sp.r + c·sp.q + c²·C
/// + d·(sp.p₂ + c·D₂) + d⁻¹·(sp.p₁ + c·D₁)
/// − (sp.r₃ + d·sp.r₂ + d⁻¹·sp.r₁)·HT
/// ```
#[allow(clippy::type_complexity)]
#[tracing::instrument(skip_all, name = "DoryVerifierState::verify_final")]
pub fn verify_final(
&self,
msg: &ScalarProductMessage<E::G1, E::G2>,
gamma: &Scalar<E>,
d: &Scalar<E>,
zk_data: Option<(
&ScalarProductProof<E::G1, E::G2, Scalar<E>, E::GT>,
&Scalar<E>,
)>,
) -> Result<(), DoryError>
where
E::G2: Group<Scalar = Scalar<E>>,
E::GT: Group<Scalar = Scalar<E>>,
Scalar<E>: Field,
{
debug_assert_eq!(
self.num_rounds, 0,
"num_rounds must be 0 for final verification"
);
let d_inv = d.inv().ok_or(DoryError::InvalidProof)?;
if let Some((sp, sigma_c)) = zk_data {
// ZK mode: 1 ML + 1 FE
let c = *sigma_c;
let c_sq = c * c;
let lhs = E::pair(
&(sp.e1 + self.setup.g1_0.scale(d)),
&(sp.e2 + self.setup.g2_0.scale(&d_inv)),
);
let ht_scalar = sp.r3 + *d * sp.r2 + d_inv * sp.r1;
let mut rhs = self.setup.chi[0] + sp.r + sp.q.scale(&c) + self.c.scale(&c_sq);
rhs = rhs + sp.p2.scale(d) + self.d2.scale(&(*d * c));
rhs = rhs + sp.p1.scale(&d_inv) + self.d1.scale(&(d_inv * c));
rhs = rhs - self.setup.ht.scale(&ht_scalar);
if lhs == rhs {
Ok(())
} else {
Err(DoryError::InvalidProof)
}
} else {
// Transparent mode: 4 ML + 1 FE
let gamma_inv = gamma.inv().ok_or(DoryError::InvalidProof)?;
let d_sq = *d * *d;
let neg_gamma = -*gamma;
let neg_gamma_inv = -gamma_inv;
let s_product = self.s1_acc * self.s2_acc;
let rhs = self.c
+ self.setup.ht.scale(&s_product)
+ self.setup.chi[0]
+ self.d2.scale(d)
+ self.d1.scale(&d_inv)
+ self.d2_init.scale(&d_sq);
// Pair 1: e(E₁_final + d·Γ₁₀, E₂_final + d⁻¹·Γ₂₀)
let p1_g1 = msg.e1 + self.setup.g1_0.scale(d);
let p1_g2 = msg.e2 + self.setup.g2_0.scale(&d_inv);
// Pair 2: e(H₁, (-γ)·(E₂_acc + (d⁻¹·s₁)·Γ₂₀))
let p2_g1 = self.setup.h1;
let p2_g2 = (self.e2 + self.setup.g2_0.scale(&(d_inv * self.s1_acc))).scale(&neg_gamma);
// Pair 3: e((-γ⁻¹)·(E₁_acc + (d·s₂)·Γ₁₀), H₂)
let p3_g1 =
(self.e1 + self.setup.g1_0.scale(&(*d * self.s2_acc))).scale(&neg_gamma_inv);
let p3_g2 = self.setup.h2;
// Pair 4: e(d²·E₁_init, Γ₂₀) — deferred VMV check
let p4_g1 = self.e1_init.scale(&d_sq);
let p4_g2 = self.setup.g2_0;
let lhs = E::multi_pair(&[p1_g1, p2_g1, p3_g1, p4_g1], &[p1_g2, p2_g2, p3_g2, p4_g2]);
if lhs == rhs {
Ok(())
} else {
Err(DoryError::InvalidProof)
}
}
}
}