dusk-plonk 0.23.0

A pure-Rust implementation of the PLONK ZK-Proof algorithm
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
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
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
//
// Copyright (c) DUSK NETWORK. All rights reserved.

//! A Proof stores the commitments to all of the elements that
//! are needed to univocally identify a prove of some statement.

use dusk_bytes::{DeserializableSlice, Serializable};
#[cfg(feature = "std")]
use rayon::prelude::*;

use super::linearization_poly::ProofEvaluations;
use crate::commitment_scheme::Commitment;

// Number of (unshifted) polynomials opened at `z`, excluding the linearization
// polynomial `r(X)`.
//
// We open at `z`:
//   a, b, c, d, s_sigma_1, s_sigma_2, s_sigma_3,
//   q_arith, q_c, q_l, q_r
const V_MAX_DEGREE: usize = 11;
// Legacy number of (unshifted) polynomials opened at `z`, excluding the
// linearization polynomial `r(X)`.
//
// This matches the pre-soundness-fix batching that does NOT bind selector /
// constant evaluations in the batched opening at `z`.
const V_MAX_DEGREE_LEGACY: usize = 7;

#[cfg(feature = "rkyv-impl")]
use bytecheck::{CheckBytes, StructCheckError};
#[cfg(feature = "rkyv-impl")]
use rkyv::{
    Archive, Deserialize, Serialize,
    ser::{ScratchSpace, Serializer},
};

#[cfg(feature = "rkyv-impl")]
use crate::util::check_field;

/// A Proof is a composition of `Commitment`s to the Witness, Permutation,
/// Quotient, Shifted and Opening polynomials as well as the
/// `ProofEvaluations`.
///
/// It's main goal is to allow the `Verifier` to formally verify that the secret
/// witnesses used to generate the [`Proof`] satisfy a circuit that both
/// [`Composer`] and [`Verifier`] have in common succintly and without any
/// capabilities of adquiring any kind of knowledge about the witness used to
/// construct the Proof.
///
/// [`Composer`]: [`crate::prelude::Composer`]
/// [`Verifier`]: [`crate::prelude::Verifier`]
#[derive(Debug, Eq, PartialEq, Clone, Default)]
#[cfg_attr(
    feature = "rkyv-impl",
    derive(Archive, Deserialize, Serialize),
    archive(
        bound(serialize = "__S: Serializer + ScratchSpace"),
        bound(
            deserialize = "<__D as rkyv::Fallible>::Error: crate::CurvesArchiveError"
        )
    )
)]
pub struct Proof {
    /// Commitment to the witness polynomial for the left wires.
    #[cfg_attr(feature = "rkyv-impl", omit_bounds)]
    pub(crate) a_comm: Commitment,
    /// Commitment to the witness polynomial for the right wires.
    #[cfg_attr(feature = "rkyv-impl", omit_bounds)]
    pub(crate) b_comm: Commitment,
    /// Commitment to the witness polynomial for the output wires.
    #[cfg_attr(feature = "rkyv-impl", omit_bounds)]
    pub(crate) c_comm: Commitment,
    /// Commitment to the witness polynomial for the fourth wires.
    #[cfg_attr(feature = "rkyv-impl", omit_bounds)]
    pub(crate) d_comm: Commitment,

    /// Commitment to the permutation polynomial.
    #[cfg_attr(feature = "rkyv-impl", omit_bounds)]
    pub(crate) z_comm: Commitment,

    /// Commitment to the quotient polynomial.
    #[cfg_attr(feature = "rkyv-impl", omit_bounds)]
    pub(crate) t_low_comm: Commitment,
    /// Commitment to the quotient polynomial.
    #[cfg_attr(feature = "rkyv-impl", omit_bounds)]
    pub(crate) t_mid_comm: Commitment,
    /// Commitment to the quotient polynomial.
    #[cfg_attr(feature = "rkyv-impl", omit_bounds)]
    pub(crate) t_high_comm: Commitment,
    /// Commitment to the quotient polynomial.
    #[cfg_attr(feature = "rkyv-impl", omit_bounds)]
    pub(crate) t_fourth_comm: Commitment,

    /// Commitment to the opening polynomial.
    #[cfg_attr(feature = "rkyv-impl", omit_bounds)]
    pub(crate) w_z_chall_comm: Commitment,
    /// Commitment to the shifted opening polynomial.
    #[cfg_attr(feature = "rkyv-impl", omit_bounds)]
    pub(crate) w_z_chall_w_comm: Commitment,
    /// Subset of all of the evaluations added to the proof.
    #[cfg_attr(feature = "rkyv-impl", omit_bounds)]
    pub(crate) evaluations: ProofEvaluations,
}

#[cfg(feature = "rkyv-impl")]
impl<C> CheckBytes<C> for ArchivedProof {
    type Error = StructCheckError;

    unsafe fn check_bytes<'a>(
        value: *const Self,
        context: &mut C,
    ) -> Result<&'a Self, Self::Error> {
        unsafe {
            check_field(&(*value).a_comm, context, "a_comm")?;
            check_field(&(*value).b_comm, context, "b_comm")?;
            check_field(&(*value).c_comm, context, "c_comm")?;
            check_field(&(*value).d_comm, context, "d_comm")?;

            check_field(&(*value).z_comm, context, "z_comm")?;

            check_field(&(*value).t_low_comm, context, "t_low_comm")?;
            check_field(&(*value).t_mid_comm, context, "t_mid_comm")?;
            check_field(&(*value).t_high_comm, context, "t_high_comm")?;
            check_field(&(*value).t_fourth_comm, context, "t_fourth_comm")?;

            check_field(&(*value).w_z_chall_comm, context, "w_z_chall_comm")?;
            check_field(
                &(*value).w_z_chall_w_comm,
                context,
                "w_z_chall_w_comm",
            )?;
            check_field(&(*value).evaluations, context, "evaluations")?;

            Ok(&*value)
        }
    }
}

// The struct Proof has 11 commitments + 1 ProofEvaluations
impl Serializable<{ 11 * Commitment::SIZE + ProofEvaluations::SIZE }>
    for Proof
{
    type Error = dusk_bytes::Error;

    #[allow(unused_must_use)]
    fn to_bytes(&self) -> [u8; Self::SIZE] {
        use dusk_bytes::Write;

        let mut buf = [0u8; Self::SIZE];
        let mut writer = &mut buf[..];
        writer.write(&self.a_comm.to_bytes());
        writer.write(&self.b_comm.to_bytes());
        writer.write(&self.c_comm.to_bytes());
        writer.write(&self.d_comm.to_bytes());
        writer.write(&self.z_comm.to_bytes());
        writer.write(&self.t_low_comm.to_bytes());
        writer.write(&self.t_mid_comm.to_bytes());
        writer.write(&self.t_high_comm.to_bytes());
        writer.write(&self.t_fourth_comm.to_bytes());
        writer.write(&self.w_z_chall_comm.to_bytes());
        writer.write(&self.w_z_chall_w_comm.to_bytes());
        writer.write(&self.evaluations.to_bytes());

        buf
    }

    fn from_bytes(buf: &[u8; Self::SIZE]) -> Result<Self, Self::Error> {
        let mut buffer = &buf[..];

        let a_comm = Commitment::from_reader(&mut buffer)?;
        let b_comm = Commitment::from_reader(&mut buffer)?;
        let c_comm = Commitment::from_reader(&mut buffer)?;
        let d_comm = Commitment::from_reader(&mut buffer)?;
        let z_comm = Commitment::from_reader(&mut buffer)?;
        let t_low_comm = Commitment::from_reader(&mut buffer)?;
        let t_mid_comm = Commitment::from_reader(&mut buffer)?;
        let t_high_comm = Commitment::from_reader(&mut buffer)?;
        let t_fourth_comm = Commitment::from_reader(&mut buffer)?;
        let w_z_chall_comm = Commitment::from_reader(&mut buffer)?;
        let w_z_chall_w_comm = Commitment::from_reader(&mut buffer)?;
        let evaluations = ProofEvaluations::from_reader(&mut buffer)?;

        Ok(Proof {
            a_comm,
            b_comm,
            c_comm,
            d_comm,
            z_comm,
            t_low_comm,
            t_mid_comm,
            t_high_comm,
            t_fourth_comm,
            w_z_chall_comm,
            w_z_chall_w_comm,
            evaluations,
        })
    }
}

#[cfg(feature = "alloc")]
#[allow(unused_imports)]
pub(crate) mod alloc {
    use super::*;
    use crate::commitment_scheme::{AggregateProof, OpeningKey};
    use crate::error::Error;
    use crate::fft::EvaluationDomain;
    use crate::proof_system::widget::VerifierKey;
    use crate::transcript::TranscriptProtocol;
    use crate::util::batch_inversion;
    #[rustfmt::skip]
    use ::alloc::vec::Vec;
    use dusk_curves::bls12_381::{
        BlsScalar, G1Affine, G1Projective, Gt, msm_variable_base,
        multi_miller_loop_result,
    };
    use merlin::Transcript;
    #[cfg(feature = "std")]
    use rayon::prelude::*;

    impl Proof {
        /// Performs the verification of a [`Proof`] returning a boolean result.
        #[allow(non_snake_case)]
        pub(crate) fn verify(
            &self,
            verifier_key: &VerifierKey,
            transcript: &mut Transcript,
            opening_key: &OpeningKey,
            public_input_indexes: &[usize],
            pub_inputs: &[BlsScalar],
        ) -> Result<(), Error> {
            let domain = EvaluationDomain::new(verifier_key.n)?;

            // Subgroup checks are done when the proof is deserialized.

            // In order for the Verifier and Prover to have the same view in the
            // non-interactive setting Both parties must commit the same
            // elements into the transcript Below the verifier will simulate
            // an interaction with the prover by adding the same elements
            // that the prover added into the transcript, hence generating the
            // same challenges
            //
            // Add commitment to witness polynomials to transcript
            transcript.append_commitment(b"a_comm", &self.a_comm);
            transcript.append_commitment(b"b_comm", &self.b_comm);
            transcript.append_commitment(b"c_comm", &self.c_comm);
            transcript.append_commitment(b"d_comm", &self.d_comm);

            // Compute beta and gamma challenges
            let beta = transcript.challenge_scalar(b"beta");
            transcript.append_scalar(b"beta", &beta);
            let gamma = transcript.challenge_scalar(b"gamma");

            // Add commitment to permutation polynomial to transcript
            transcript.append_commitment(b"z_comm", &self.z_comm);

            // Compute quotient challenge
            let alpha = transcript.challenge_scalar(b"alpha");
            let range_sep_challenge =
                transcript.challenge_scalar(b"range separation challenge");
            let logic_sep_challenge =
                transcript.challenge_scalar(b"logic separation challenge");
            let fixed_base_sep_challenge =
                transcript.challenge_scalar(b"fixed base separation challenge");
            let var_base_sep_challenge = transcript
                .challenge_scalar(b"variable base separation challenge");

            // Add commitment to quotient polynomial to transcript
            transcript.append_commitment(b"t_low_comm", &self.t_low_comm);
            transcript.append_commitment(b"t_mid_comm", &self.t_mid_comm);
            transcript.append_commitment(b"t_high_comm", &self.t_high_comm);
            transcript.append_commitment(b"t_fourth_comm", &self.t_fourth_comm);

            // Compute evaluation challenge z
            let z_challenge = transcript.challenge_scalar(b"z_challenge");

            // Add opening evaluations to transcript
            transcript.append_scalar(b"a_eval", &self.evaluations.a_eval);
            transcript.append_scalar(b"b_eval", &self.evaluations.b_eval);
            transcript.append_scalar(b"c_eval", &self.evaluations.c_eval);
            transcript.append_scalar(b"d_eval", &self.evaluations.d_eval);

            transcript.append_scalar(
                b"s_sigma_1_eval",
                &self.evaluations.s_sigma_1_eval,
            );
            transcript.append_scalar(
                b"s_sigma_2_eval",
                &self.evaluations.s_sigma_2_eval,
            );
            transcript.append_scalar(
                b"s_sigma_3_eval",
                &self.evaluations.s_sigma_3_eval,
            );

            transcript.append_scalar(b"z_eval", &self.evaluations.z_eval);

            // Add extra shifted evaluations to transcript
            transcript.append_scalar(b"a_w_eval", &self.evaluations.a_w_eval);
            transcript.append_scalar(b"b_w_eval", &self.evaluations.b_w_eval);
            transcript.append_scalar(b"d_w_eval", &self.evaluations.d_w_eval);
            transcript
                .append_scalar(b"q_arith_eval", &self.evaluations.q_arith_eval);
            transcript.append_scalar(b"q_c_eval", &self.evaluations.q_c_eval);
            transcript.append_scalar(b"q_l_eval", &self.evaluations.q_l_eval);
            transcript.append_scalar(b"q_r_eval", &self.evaluations.q_r_eval);

            let v_challenge = transcript.challenge_scalar(b"v_challenge");
            let v_w_challenge = transcript.challenge_scalar(b"v_w_challenge");

            // Add commitment to openings to transcript
            transcript
                .append_commitment(b"w_z_chall_comm", &self.w_z_chall_comm);
            transcript
                .append_commitment(b"w_z_chall_w_comm", &self.w_z_chall_w_comm);

            // Compute the challenge 'u'
            let u_challenge = transcript.challenge_scalar(b"u_challenge");

            // Compute zero polynomial evaluated at challenge `z`
            let z_h_eval = domain.evaluate_vanishing_polynomial(&z_challenge);

            // Compute first lagrange polynomial evaluated at challenge `z`
            let l1_eval = compute_first_lagrange_evaluation(
                &domain,
                &z_h_eval,
                &z_challenge,
            );

            // Evaluate public inputs
            let pi_eval = compute_barycentric_eval_sparse(
                public_input_indexes,
                pub_inputs,
                &z_challenge,
                &domain,
            );

            // Compute r_0
            let r_0_eval = pi_eval
                - l1_eval * alpha.square()
                - alpha
                    * (self.evaluations.a_eval
                        + beta * self.evaluations.s_sigma_1_eval
                        + gamma)
                    * (self.evaluations.b_eval
                        + beta * self.evaluations.s_sigma_2_eval
                        + gamma)
                    * (self.evaluations.c_eval
                        + beta * self.evaluations.s_sigma_3_eval
                        + gamma)
                    * (self.evaluations.d_eval + gamma)
                    * self.evaluations.z_eval;

            // Coefficients to compute [E]_1
            let mut v_coeffs_E = [BlsScalar::zero(); V_MAX_DEGREE + 3];
            v_coeffs_E[0] = v_challenge;

            // Compute the powers of the v_challenge.
            for i in 1..V_MAX_DEGREE {
                v_coeffs_E[i] = v_coeffs_E[i - 1] * v_challenge;
            }

            // Compute the powers of the v_challenge multiplied by
            // u_challenge.
            v_coeffs_E[V_MAX_DEGREE] = v_w_challenge * u_challenge;
            v_coeffs_E[V_MAX_DEGREE + 1] =
                v_coeffs_E[V_MAX_DEGREE] * v_w_challenge;
            v_coeffs_E[V_MAX_DEGREE + 2] =
                v_coeffs_E[V_MAX_DEGREE + 1] * v_w_challenge;

            // Evaluations to compute [E]_1
            //
            // IMPORTANT: Ordering must match the prover's batched opening at
            // `z` (`CommitKey::compute_aggregate_witness([...])`)
            // and the verifier's commitment list below.
            let E_evals = [
                // Unshifted openings at z
                self.evaluations.a_eval,
                self.evaluations.b_eval,
                self.evaluations.c_eval,
                self.evaluations.d_eval,
                self.evaluations.s_sigma_1_eval,
                self.evaluations.s_sigma_2_eval,
                self.evaluations.s_sigma_3_eval,
                // Bind selector/constant evaluations used inside linearization
                self.evaluations.q_arith_eval,
                self.evaluations.q_c_eval,
                self.evaluations.q_l_eval,
                self.evaluations.q_r_eval,
                // Shifted openings at z*w
                self.evaluations.a_w_eval,
                self.evaluations.b_w_eval,
                self.evaluations.d_w_eval,
            ];

            // Compute E = (-r_0 + (v)a + (v^2)b + (v^3)c + (v^4)d +
            // + (v^5)s_sigma_1 + (v^6)s_sigma_2 + (v^7)s_sigma_3 +
            // + (u)z_w + (u * v_w)a_w + (u * v_w^2)b_w + (u * v_w^3)d_w)
            let mut E_scalar: BlsScalar = E_evals
                .iter()
                .zip(v_coeffs_E.iter())
                .map(|(eval, coeff)| eval * coeff)
                .sum();
            E_scalar += -r_0_eval + (u_challenge * self.evaluations.z_eval);

            // The verifier equation needs [F]_1 - [E]_1 plus the opening
            // witness terms in the second pairing input. Instead of computing
            // [D]_1, [F]_1, [E]_1, z[W_z]_1, and uzw[W_zw]_1 separately, append
            // their scalars and bases to one MSM:
            //
            // [D]_1
            // + sum_i f_i[C_i]_1
            // - E[G]_1
            // + z[W_z]_1
            // + uzw[W_zw]_1.
            let mut scalarmuls_points = Vec::with_capacity(32);
            let mut scalarmuls_scalars = Vec::with_capacity(32);
            self.append_linearization_commitment_terms(
                &mut scalarmuls_scalars,
                &mut scalarmuls_points,
                &alpha,
                &beta,
                &gamma,
                (
                    &range_sep_challenge,
                    &logic_sep_challenge,
                    &fixed_base_sep_challenge,
                    &var_base_sep_challenge,
                ),
                &z_challenge,
                z_h_eval,
                &u_challenge,
                l1_eval,
                verifier_key,
            );

            let mut f_scalars = [BlsScalar::zero(); V_MAX_DEGREE];
            f_scalars.copy_from_slice(&v_coeffs_E[..V_MAX_DEGREE]);

            // As we include the shifted coefficients when computing [F]_1,
            // we group them to save scalar multiplications when multiplying
            // by [a]_1, [b]_1, and [d]_1.
            f_scalars[0] += v_coeffs_E[V_MAX_DEGREE];
            f_scalars[1] += v_coeffs_E[V_MAX_DEGREE + 1];
            f_scalars[3] += v_coeffs_E[V_MAX_DEGREE + 2];

            scalarmuls_points.extend_from_slice(&[
                // Unshifted openings at z
                self.a_comm.0,
                self.b_comm.0,
                self.c_comm.0,
                self.d_comm.0,
                verifier_key.permutation.s_sigma_1.0,
                verifier_key.permutation.s_sigma_2.0,
                verifier_key.permutation.s_sigma_3.0,
                // Selector/constant commitments whose evaluations are used
                // inside the verifier linearization commitment.
                verifier_key.arithmetic.q_arith.0,
                verifier_key.arithmetic.q_c.0,
                verifier_key.arithmetic.q_l.0,
                verifier_key.arithmetic.q_r.0,
            ]);
            scalarmuls_scalars.extend_from_slice(&f_scalars);

            scalarmuls_points.push(opening_key.g);
            scalarmuls_scalars.push(-E_scalar);
            scalarmuls_points.push(self.w_z_chall_comm.0);
            scalarmuls_scalars.push(z_challenge);
            scalarmuls_points.push(self.w_z_chall_w_comm.0);
            scalarmuls_scalars
                .push(u_challenge * z_challenge * domain.group_gen);

            // Compute the G_1 element of the first pairing:
            // [W_z]_1 + u * [W_zw]_1
            //
            // Note that we negate this value to be able to subtract
            // the pairings later on, using the multi Miller loop
            let left_projective = -(self.w_z_chall_comm.0
                + (self.w_z_chall_w_comm.0 * u_challenge));

            // Compute the G_1 element of the second pairing:
            // z * [W_z]_1 + (u * z * w) * [W_zw]_1 + [F]_1 - [E]_1
            let right_projective =
                msm_variable_base(&scalarmuls_points, &scalarmuls_scalars);

            let projectives = [left_projective, right_projective];
            let mut affines = [G1Affine::identity(); 2];
            G1Projective::batch_normalize(&projectives, &mut affines);

            // Compute the two pairings and subtract them
            let pairing = multi_miller_loop_result(&[
                (&affines[0], &opening_key.prepared_x_h),
                (&affines[1], &opening_key.prepared_h),
            ]);

            // Return 'ProofVerificationError' if the two
            // pairings are not equal, continue otherwise
            if pairing != Gt::identity() {
                return Err(Error::ProofVerificationError);
            };

            Ok(())
        }

        /// Performs proof verification using the legacy batching behavior
        /// (PLONK v1).
        #[allow(non_snake_case)]
        pub(crate) fn verify_legacy(
            &self,
            verifier_key: &VerifierKey,
            transcript: &mut Transcript,
            opening_key: &OpeningKey,
            public_input_indexes: &[usize],
            pub_inputs: &[BlsScalar],
        ) -> Result<(), Error> {
            let domain = EvaluationDomain::new(verifier_key.n)?;

            // Subgroup checks are done when the proof is deserialized.

            // In order for the Verifier and Prover to have the same view in the
            // non-interactive setting Both parties must commit the same
            // elements into the transcript Below the verifier will simulate
            // an interaction with the prover by adding the same elements
            // that the prover added into the transcript, hence generating the
            // same challenges
            //
            // Add commitment to witness polynomials to transcript
            transcript.append_commitment(b"a_comm", &self.a_comm);
            transcript.append_commitment(b"b_comm", &self.b_comm);
            transcript.append_commitment(b"c_comm", &self.c_comm);
            transcript.append_commitment(b"d_comm", &self.d_comm);

            // Compute beta and gamma challenges
            let beta = transcript.challenge_scalar(b"beta");
            transcript.append_scalar(b"beta", &beta);
            let gamma = transcript.challenge_scalar(b"gamma");

            // Add commitment to permutation polynomial to transcript
            transcript.append_commitment(b"z_comm", &self.z_comm);

            // Compute quotient challenge
            let alpha = transcript.challenge_scalar(b"alpha");
            let range_sep_challenge =
                transcript.challenge_scalar(b"range separation challenge");
            let logic_sep_challenge =
                transcript.challenge_scalar(b"logic separation challenge");
            let fixed_base_sep_challenge =
                transcript.challenge_scalar(b"fixed base separation challenge");
            let var_base_sep_challenge = transcript
                .challenge_scalar(b"variable base separation challenge");

            // Add commitment to quotient polynomial to transcript
            transcript.append_commitment(b"t_low_comm", &self.t_low_comm);
            transcript.append_commitment(b"t_mid_comm", &self.t_mid_comm);
            transcript.append_commitment(b"t_high_comm", &self.t_high_comm);
            transcript.append_commitment(b"t_fourth_comm", &self.t_fourth_comm);

            // Compute evaluation challenge z
            let z_challenge = transcript.challenge_scalar(b"z_challenge");

            // Add opening evaluations to transcript
            transcript.append_scalar(b"a_eval", &self.evaluations.a_eval);
            transcript.append_scalar(b"b_eval", &self.evaluations.b_eval);
            transcript.append_scalar(b"c_eval", &self.evaluations.c_eval);
            transcript.append_scalar(b"d_eval", &self.evaluations.d_eval);

            transcript.append_scalar(
                b"s_sigma_1_eval",
                &self.evaluations.s_sigma_1_eval,
            );
            transcript.append_scalar(
                b"s_sigma_2_eval",
                &self.evaluations.s_sigma_2_eval,
            );
            transcript.append_scalar(
                b"s_sigma_3_eval",
                &self.evaluations.s_sigma_3_eval,
            );

            transcript.append_scalar(b"z_eval", &self.evaluations.z_eval);

            // Add extra shifted evaluations to transcript
            transcript.append_scalar(b"a_w_eval", &self.evaluations.a_w_eval);
            transcript.append_scalar(b"b_w_eval", &self.evaluations.b_w_eval);
            transcript.append_scalar(b"d_w_eval", &self.evaluations.d_w_eval);
            transcript
                .append_scalar(b"q_arith_eval", &self.evaluations.q_arith_eval);
            transcript.append_scalar(b"q_c_eval", &self.evaluations.q_c_eval);
            transcript.append_scalar(b"q_l_eval", &self.evaluations.q_l_eval);
            transcript.append_scalar(b"q_r_eval", &self.evaluations.q_r_eval);

            let v_challenge = transcript.challenge_scalar(b"v_challenge");
            let v_w_challenge = transcript.challenge_scalar(b"v_w_challenge");

            // Add commitment to openings to transcript
            transcript
                .append_commitment(b"w_z_chall_comm", &self.w_z_chall_comm);
            transcript
                .append_commitment(b"w_z_chall_w_comm", &self.w_z_chall_w_comm);

            // Compute the challenge 'u'
            let u_challenge = transcript.challenge_scalar(b"u_challenge");

            // Compute zero polynomial evaluated at challenge `z`
            let z_h_eval = domain.evaluate_vanishing_polynomial(&z_challenge);

            // Compute first lagrange polynomial evaluated at challenge `z`
            let l1_eval = compute_first_lagrange_evaluation(
                &domain,
                &z_h_eval,
                &z_challenge,
            );

            // Evaluate public inputs
            let pi_eval = compute_barycentric_eval_sparse(
                public_input_indexes,
                pub_inputs,
                &z_challenge,
                &domain,
            );

            // Compute r_0
            let r_0_eval = pi_eval
                - l1_eval * alpha.square()
                - alpha
                    * (self.evaluations.a_eval
                        + beta * self.evaluations.s_sigma_1_eval
                        + gamma)
                    * (self.evaluations.b_eval
                        + beta * self.evaluations.s_sigma_2_eval
                        + gamma)
                    * (self.evaluations.c_eval
                        + beta * self.evaluations.s_sigma_3_eval
                        + gamma)
                    * (self.evaluations.d_eval + gamma)
                    * self.evaluations.z_eval;

            // Coefficients to compute [E]_1
            let mut v_coeffs_E = [BlsScalar::zero(); V_MAX_DEGREE_LEGACY + 3];
            v_coeffs_E[0] = v_challenge;

            // Compute the powers of the v_challenge.
            for i in 1..V_MAX_DEGREE_LEGACY {
                v_coeffs_E[i] = v_coeffs_E[i - 1] * v_challenge;
            }

            // Compute the powers of the v_challenge multiplied by
            // u_challenge.
            v_coeffs_E[V_MAX_DEGREE_LEGACY] = v_w_challenge * u_challenge;
            v_coeffs_E[V_MAX_DEGREE_LEGACY + 1] =
                v_coeffs_E[V_MAX_DEGREE_LEGACY] * v_w_challenge;
            v_coeffs_E[V_MAX_DEGREE_LEGACY + 2] =
                v_coeffs_E[V_MAX_DEGREE_LEGACY + 1] * v_w_challenge;

            // Evaluations to compute [E]_1
            //
            // IMPORTANT: Ordering must match the legacy prover's batched
            // opening at `z` (pre-soundness-fix).
            let E_evals = [
                self.evaluations.a_eval,
                self.evaluations.b_eval,
                self.evaluations.c_eval,
                self.evaluations.d_eval,
                self.evaluations.s_sigma_1_eval,
                self.evaluations.s_sigma_2_eval,
                self.evaluations.s_sigma_3_eval,
                self.evaluations.a_w_eval,
                self.evaluations.b_w_eval,
                self.evaluations.d_w_eval,
            ];

            // Compute E = (-r_0 + (v)a + (v^2)b + (v^3)c + (v^4)d +
            // + (v^5)s_sigma_1 + (v^6)s_sigma_2 + (v^7)s_sigma_3 +
            // + (u)z_w + (u * v_w)a_w + (u * v_w^2)b_w + (u * v_w^3)d_w)
            let mut E_scalar: BlsScalar = E_evals
                .iter()
                .zip(v_coeffs_E.iter())
                .map(|(eval, coeff)| eval * coeff)
                .sum();
            E_scalar += -r_0_eval + (u_challenge * self.evaluations.z_eval);

            // The verifier equation needs [F]_1 - [E]_1 plus the opening
            // witness terms in the second pairing input. Instead of computing
            // [D]_1, [F]_1, [E]_1, z[W_z]_1, and uzw[W_zw]_1 separately, append
            // their scalars and bases to one MSM:
            //
            // [D]_1
            // + sum_i f_i[C_i]_1
            // - E[G]_1
            // + z[W_z]_1
            // + uzw[W_zw]_1.
            let mut scalarmuls_points = Vec::with_capacity(28);
            let mut scalarmuls_scalars = Vec::with_capacity(28);
            self.append_linearization_commitment_terms(
                &mut scalarmuls_scalars,
                &mut scalarmuls_points,
                &alpha,
                &beta,
                &gamma,
                (
                    &range_sep_challenge,
                    &logic_sep_challenge,
                    &fixed_base_sep_challenge,
                    &var_base_sep_challenge,
                ),
                &z_challenge,
                z_h_eval,
                &u_challenge,
                l1_eval,
                verifier_key,
            );

            let mut f_scalars = [BlsScalar::zero(); V_MAX_DEGREE_LEGACY];
            f_scalars.copy_from_slice(&v_coeffs_E[..V_MAX_DEGREE_LEGACY]);

            // As we include the shifted coefficients when computing [F]_1,
            // we group them to save scalar multiplications when multiplying
            // by [a]_1, [b]_1, and [d]_1.
            f_scalars[0] += v_coeffs_E[V_MAX_DEGREE_LEGACY];
            f_scalars[1] += v_coeffs_E[V_MAX_DEGREE_LEGACY + 1];
            f_scalars[3] += v_coeffs_E[V_MAX_DEGREE_LEGACY + 2];

            scalarmuls_points.extend_from_slice(&[
                self.a_comm.0,
                self.b_comm.0,
                self.c_comm.0,
                self.d_comm.0,
                verifier_key.permutation.s_sigma_1.0,
                verifier_key.permutation.s_sigma_2.0,
                verifier_key.permutation.s_sigma_3.0,
            ]);
            scalarmuls_scalars.extend_from_slice(&f_scalars);

            scalarmuls_points.push(opening_key.g);
            scalarmuls_scalars.push(-E_scalar);
            scalarmuls_points.push(self.w_z_chall_comm.0);
            scalarmuls_scalars.push(z_challenge);
            scalarmuls_points.push(self.w_z_chall_w_comm.0);
            scalarmuls_scalars
                .push(u_challenge * z_challenge * domain.group_gen);

            // Compute the G_1 element of the first pairing:
            // [W_z]_1 + u * [W_zw]_1
            //
            // Note that we negate this value to be able to subtract
            // the pairings later on, using the multi Miller loop
            let left_projective = -(self.w_z_chall_comm.0
                + (self.w_z_chall_w_comm.0 * u_challenge));

            // Compute the G_1 element of the second pairing:
            // z * [W_z]_1 + (u * z * w) * [W_zw]_1 + [F]_1 - [E]_1
            let right_projective =
                msm_variable_base(&scalarmuls_points, &scalarmuls_scalars);

            let projectives = [left_projective, right_projective];
            let mut affines = [G1Affine::identity(); 2];
            G1Projective::batch_normalize(&projectives, &mut affines);

            // Compute the two pairings and subtract them
            let pairing = multi_miller_loop_result(&[
                (&affines[0], &opening_key.prepared_x_h),
                (&affines[1], &opening_key.prepared_h),
            ]);

            // Return 'ProofVerificationError' if the two
            // pairings are not equal, continue otherwise
            if pairing != Gt::identity() {
                return Err(Error::ProofVerificationError);
            };

            Ok(())
        }

        // Append the [D]_1 linearization terms to the batched verifier MSM.
        //
        // This is algebraically the same linearization commitment that used to
        // be materialized as a separate G1 element. Keeping it as scalar/base
        // pairs lets the verifier fold it into the final right-pairing input
        // MSM without changing the PLONK relation being checked.
        #[allow(clippy::too_many_arguments)]
        fn append_linearization_commitment_terms(
            &self,
            scalars: &mut Vec<BlsScalar>,
            points: &mut Vec<G1Affine>,
            alpha: &BlsScalar,
            beta: &BlsScalar,
            gamma: &BlsScalar,
            (
                range_sep_challenge,
                logic_sep_challenge,
                fixed_base_sep_challenge,
                var_base_sep_challenge,
            ): (&BlsScalar, &BlsScalar, &BlsScalar, &BlsScalar),
            z_challenge: &BlsScalar,
            z_h_eval: BlsScalar,
            u_challenge: &BlsScalar,
            l1_eval: BlsScalar,
            verifier_key: &VerifierKey,
        ) {
            verifier_key.arithmetic.compute_linearization_commitment(
                scalars,
                points,
                &self.evaluations,
            );

            verifier_key.range.compute_linearization_commitment(
                range_sep_challenge,
                scalars,
                points,
                &self.evaluations,
            );

            verifier_key.logic.compute_linearization_commitment(
                logic_sep_challenge,
                scalars,
                points,
                &self.evaluations,
            );

            verifier_key.fixed_base.compute_linearization_commitment(
                fixed_base_sep_challenge,
                scalars,
                points,
                &self.evaluations,
            );

            verifier_key.variable_base.compute_linearization_commitment(
                var_base_sep_challenge,
                scalars,
                points,
                &self.evaluations,
            );

            verifier_key.permutation.compute_linearization_commitment(
                scalars,
                points,
                &self.evaluations,
                z_challenge,
                u_challenge,
                (alpha, beta, gamma),
                &l1_eval,
                self.z_comm.0,
            );

            let z_h_eval_neg = -z_h_eval;
            let z_pow_n = z_h_eval + BlsScalar::one();
            let z_n = z_pow_n * z_h_eval_neg;
            let z_two_n = z_pow_n.square() * z_h_eval_neg;
            let z_three_n = z_two_n * z_pow_n;

            scalars.push(z_h_eval_neg);
            points.push(self.t_low_comm.0);

            scalars.push(z_n);
            points.push(self.t_mid_comm.0);

            scalars.push(z_two_n);
            points.push(self.t_high_comm.0);

            scalars.push(z_three_n);
            points.push(self.t_fourth_comm.0);
        }
    }

    fn compute_first_lagrange_evaluation(
        domain: &EvaluationDomain,
        z_h_eval: &BlsScalar,
        z_challenge: &BlsScalar,
    ) -> BlsScalar {
        let n_fr = BlsScalar::from(domain.size() as u64);
        let denom = n_fr * (z_challenge - BlsScalar::one());
        z_h_eval * denom.invert().unwrap()
    }

    pub(crate) fn compute_barycentric_eval(
        evaluations: &[BlsScalar],
        point: &BlsScalar,
        domain: &EvaluationDomain,
    ) -> BlsScalar {
        let numerator = (point.pow(&[domain.size() as u64, 0, 0, 0])
            - BlsScalar::one())
            * domain.size_inv;

        // Indices with non-zero evaluations
        #[cfg(not(feature = "std"))]
        let range = 0..evaluations.len();

        #[cfg(feature = "std")]
        let range = (0..evaluations.len()).into_par_iter();

        let non_zero_evaluations: Vec<usize> = range
            .filter(|&i| {
                let evaluation = &evaluations[i];
                evaluation != &BlsScalar::zero()
            })
            .collect();

        // Only compute the denominators with non-zero evaluations
        #[cfg(not(feature = "std"))]
        let range = 0..non_zero_evaluations.len();

        #[cfg(feature = "std")]
        let range = (0..non_zero_evaluations.len()).into_par_iter();

        let mut denominators: Vec<BlsScalar> = range
            .clone()
            .map(|i| {
                // index of non-zero evaluation
                let index = non_zero_evaluations[i];

                (domain.group_gen_inv.pow(&[index as u64, 0, 0, 0]) * point)
                    - BlsScalar::one()
            })
            .collect();
        batch_inversion(&mut denominators);

        let result: BlsScalar = range
            .map(|i| {
                let eval_index = non_zero_evaluations[i];
                let eval = evaluations[eval_index];

                denominators[i] * eval
            })
            .sum();

        result * numerator
    }

    pub(crate) fn compute_barycentric_eval_sparse(
        indexes: &[usize],
        evaluations: &[BlsScalar],
        point: &BlsScalar,
        domain: &EvaluationDomain,
    ) -> BlsScalar {
        if indexes.is_empty() {
            return BlsScalar::zero();
        }

        let numerator = (point.pow(&[domain.size() as u64, 0, 0, 0])
            - BlsScalar::one())
            * domain.size_inv;

        let non_zero_evaluations: Vec<_> = indexes
            .iter()
            .copied()
            .zip(evaluations.iter().copied())
            .filter(|(_, evaluation)| evaluation != &BlsScalar::zero())
            .collect();

        if non_zero_evaluations.is_empty() {
            return BlsScalar::zero();
        }

        let mut denominators: Vec<BlsScalar> = non_zero_evaluations
            .iter()
            .map(|(index, _)| {
                (domain.group_gen_inv.pow(&[*index as u64, 0, 0, 0]) * point)
                    - BlsScalar::one()
            })
            .collect();
        batch_inversion(&mut denominators);

        let result: BlsScalar = non_zero_evaluations
            .iter()
            .zip(denominators.iter())
            .map(|((_, evaluation), denominator)| *denominator * *evaluation)
            .sum();

        result * numerator
    }
}

#[cfg(test)]
mod proof_tests {
    use dusk_curves::bls12_381::BlsScalar;
    use ff::Field;
    use rand_core::OsRng;

    use super::*;

    #[test]
    fn test_dusk_bytes_serde_proof() {
        let proof = Proof {
            a_comm: Commitment::default(),
            b_comm: Commitment::default(),
            c_comm: Commitment::default(),
            d_comm: Commitment::default(),
            z_comm: Commitment::default(),
            t_low_comm: Commitment::default(),
            t_mid_comm: Commitment::default(),
            t_high_comm: Commitment::default(),
            t_fourth_comm: Commitment::default(),
            w_z_chall_comm: Commitment::default(),
            w_z_chall_w_comm: Commitment::default(),
            evaluations: ProofEvaluations {
                a_eval: BlsScalar::random(&mut OsRng),
                b_eval: BlsScalar::random(&mut OsRng),
                c_eval: BlsScalar::random(&mut OsRng),
                d_eval: BlsScalar::random(&mut OsRng),
                a_w_eval: BlsScalar::random(&mut OsRng),
                b_w_eval: BlsScalar::random(&mut OsRng),
                d_w_eval: BlsScalar::random(&mut OsRng),
                q_arith_eval: BlsScalar::random(&mut OsRng),
                q_c_eval: BlsScalar::random(&mut OsRng),
                q_l_eval: BlsScalar::random(&mut OsRng),
                q_r_eval: BlsScalar::random(&mut OsRng),
                s_sigma_1_eval: BlsScalar::random(&mut OsRng),
                s_sigma_2_eval: BlsScalar::random(&mut OsRng),
                s_sigma_3_eval: BlsScalar::random(&mut OsRng),
                z_eval: BlsScalar::random(&mut OsRng),
            },
        };

        let proof_bytes = proof.to_bytes();
        let got_proof = Proof::from_bytes(&proof_bytes).unwrap();
        assert_eq!(got_proof, proof);
    }
}

/// Regression test for CVE: unbound selector evaluations in batch opening.
///
/// The selector evaluations `q_arith_eval`, `q_c_eval`, `q_l_eval`,
/// `q_r_eval` are included in `ProofEvaluations` but are NOT verified
/// against their polynomial commitments via the batch opening proof.
/// A malicious prover can forge these values after seeing `z_challenge`
/// to pass verification for a false statement.
///
/// This test constructs such a forged proof. If the vulnerability is
/// present, the forged proof passes verification and the test fails.
/// Once the fix is applied, verification rejects the proof and the test
/// passes.
#[cfg(test)]
#[cfg(feature = "std")]
mod soundness_tests {
    use dusk_curves::bls12_381::BlsScalar;
    use ff::Field;
    use rand::SeedableRng;
    use rand::rngs::StdRng;
    use rand_core::{CryptoRng, RngCore};

    use crate::commitment_scheme::{CommitKey, PublicParameters};
    use crate::compiler::{Compiler, Prover, Verifier};
    use crate::composer::{Circuit, Composer, Constraint};
    use crate::error::Error;
    use crate::fft::{EvaluationDomain, Polynomial};
    use crate::proof_system::linearization_poly::{self, ProofEvaluations};
    use crate::proof_system::proof::{self, Proof};
    use crate::transcript::TranscriptProtocol;

    // Simple arithmetic circuit: a + b + a*b + d + public + 1 = result
    #[derive(Default)]
    struct ArithCircuit {
        a: BlsScalar,
        b: BlsScalar,
        d: BlsScalar,
        public: BlsScalar,
        result: BlsScalar,
    }

    impl Circuit for ArithCircuit {
        fn circuit(&self, composer: &mut Composer) -> Result<(), Error> {
            let w_a = composer.append_witness(self.a);
            let w_b = composer.append_witness(self.b);
            let w_d = composer.append_witness(self.d);
            let w_result = composer.append_witness(self.result);

            let constraint = Constraint::new()
                .left(1)
                .right(1)
                .mult(1)
                .fourth(1)
                .a(w_a)
                .b(w_b)
                .d(w_d)
                .public(self.public)
                .constant(BlsScalar::one());

            let result = composer.gate_add(constraint);
            composer.assert_equal(w_result, result);

            Ok(())
        }
    }

    /// Construct a forged proof exploiting the unbound selector evaluations.
    ///
    /// The proof uses:
    /// - Honest wire polynomials (circuit is satisfied at gate level)
    /// - A RANDOM permutation polynomial z (breaking the permutation argument —
    ///   gates are not properly wired together)
    /// - RANDOM quotient polynomials (not the actual quotient)
    /// - A FORGED `q_arith_eval` computed to balance the verification equation
    ///   after observing `z_challenge`
    ///
    /// This proof is invalid (the permutation argument does not hold)
    /// but exploits the fact that selector evaluations are not bound
    /// by the opening proof to make the pairing check pass.
    fn forge_proof(
        prover: &Prover,
        _verifier: &Verifier,
        circuit: &ArithCircuit,
        rng: &mut (impl RngCore + CryptoRng),
    ) -> (Proof, Vec<BlsScalar>) {
        let composed = Composer::prove(prover.constraints, circuit).unwrap();
        let size = prover.size;
        let domain = EvaluationDomain::new(prover.constraints).unwrap();

        let mut transcript = prover.transcript.clone();

        let public_inputs = composed.public_inputs();
        let public_input_indexes = composed.public_input_indexes();
        let dense_public_inputs = Composer::dense_public_inputs(
            &public_input_indexes,
            &public_inputs,
            prover.size,
        );

        public_inputs
            .iter()
            .for_each(|pi| transcript.append_scalar(b"pi", pi));

        // Round 1: honest wire polynomials
        let mut a_scalars = vec![BlsScalar::zero(); size];
        let mut b_scalars = vec![BlsScalar::zero(); size];
        let mut c_scalars = vec![BlsScalar::zero(); size];
        let mut d_scalars = vec![BlsScalar::zero(); size];

        composed
            .constraints
            .iter()
            .enumerate()
            .for_each(|(i, constraint)| {
                a_scalars[i] = composed[constraint.a];
                b_scalars[i] = composed[constraint.b];
                c_scalars[i] = composed[constraint.c];
                d_scalars[i] = composed[constraint.d];
            });

        let a_poly = Prover::blind_poly(rng, &a_scalars, 1, &domain);
        let b_poly = Prover::blind_poly(rng, &b_scalars, 1, &domain);
        let c_poly = Prover::blind_poly(rng, &c_scalars, 1, &domain);
        let d_poly = Prover::blind_poly(rng, &d_scalars, 1, &domain);

        let a_comm = prover.commit_key.commit(&a_poly).unwrap();
        let b_comm = prover.commit_key.commit(&b_poly).unwrap();
        let c_comm = prover.commit_key.commit(&c_poly).unwrap();
        let d_comm = prover.commit_key.commit(&d_poly).unwrap();

        transcript.append_commitment(b"a_comm", &a_comm);
        transcript.append_commitment(b"b_comm", &b_comm);
        transcript.append_commitment(b"c_comm", &c_comm);
        transcript.append_commitment(b"d_comm", &d_comm);

        // Round 2: RANDOM permutation polynomial (not honestly
        // computed). This breaks the permutation argument.
        let beta = transcript.challenge_scalar(b"beta");
        transcript.append_scalar(b"beta", &beta);
        let gamma = transcript.challenge_scalar(b"gamma");

        let mut z_scalars = vec![BlsScalar::zero(); size];
        for z in z_scalars.iter_mut() {
            *z = BlsScalar::random(&mut *rng);
        }
        let z_poly = Prover::blind_poly(rng, &z_scalars, 2, &domain);
        let z_comm = prover.commit_key.commit(&z_poly).unwrap();
        transcript.append_commitment(b"z_comm", &z_comm);

        // Round 3: RANDOM quotient polynomials
        let alpha = transcript.challenge_scalar(b"alpha");
        let range_sep_challenge =
            transcript.challenge_scalar(b"range separation challenge");
        let logic_sep_challenge =
            transcript.challenge_scalar(b"logic separation challenge");
        let fixed_base_sep_challenge =
            transcript.challenge_scalar(b"fixed base separation challenge");
        let var_base_sep_challenge =
            transcript.challenge_scalar(b"variable base separation challenge");

        let rand_linear_poly = |rng: &mut dyn RngCore| -> Polynomial {
            let c0 = BlsScalar::random(&mut *rng);
            let mut c1 = BlsScalar::random(&mut *rng);
            while c1 == BlsScalar::zero() {
                c1 = BlsScalar::random(&mut *rng);
            }
            Polynomial::from_coefficients_vec(vec![c0, c1])
        };

        let t_low_poly = rand_linear_poly(rng);
        let t_mid_poly = rand_linear_poly(rng);
        let t_high_poly = rand_linear_poly(rng);
        let t_fourth_poly = rand_linear_poly(rng);

        let t_low_comm = prover.commit_key.commit(&t_low_poly).unwrap();
        let t_mid_comm = prover.commit_key.commit(&t_mid_poly).unwrap();
        let t_high_comm = prover.commit_key.commit(&t_high_poly).unwrap();
        let t_fourth_comm = prover.commit_key.commit(&t_fourth_poly).unwrap();

        transcript.append_commitment(b"t_low_comm", &t_low_comm);
        transcript.append_commitment(b"t_mid_comm", &t_mid_comm);
        transcript.append_commitment(b"t_high_comm", &t_high_comm);
        transcript.append_commitment(b"t_fourth_comm", &t_fourth_comm);

        // Round 4: honest evaluations of wire and sigma
        // polynomials at z_challenge
        let z_challenge = transcript.challenge_scalar(b"z_challenge");

        let a_eval = a_poly.evaluate(&z_challenge);
        let b_eval = b_poly.evaluate(&z_challenge);
        let c_eval = c_poly.evaluate(&z_challenge);
        let d_eval = d_poly.evaluate(&z_challenge);

        let s_sigma_1_eval = prover
            .prover_key
            .permutation
            .s_sigma_1
            .0
            .evaluate(&z_challenge);
        let s_sigma_2_eval = prover
            .prover_key
            .permutation
            .s_sigma_2
            .0
            .evaluate(&z_challenge);
        let s_sigma_3_eval = prover
            .prover_key
            .permutation
            .s_sigma_3
            .0
            .evaluate(&z_challenge);

        let z_eval = z_poly.evaluate(&(z_challenge * domain.group_gen));

        transcript.append_scalar(b"a_eval", &a_eval);
        transcript.append_scalar(b"b_eval", &b_eval);
        transcript.append_scalar(b"c_eval", &c_eval);
        transcript.append_scalar(b"d_eval", &d_eval);
        transcript.append_scalar(b"s_sigma_1_eval", &s_sigma_1_eval);
        transcript.append_scalar(b"s_sigma_2_eval", &s_sigma_2_eval);
        transcript.append_scalar(b"s_sigma_3_eval", &s_sigma_3_eval);
        transcript.append_scalar(b"z_eval", &z_eval);

        let a_w_eval = a_poly.evaluate(&(z_challenge * domain.group_gen));
        let b_w_eval = b_poly.evaluate(&(z_challenge * domain.group_gen));
        let d_w_eval = d_poly.evaluate(&(z_challenge * domain.group_gen));

        // compute honest selector evaluations (except q_arith)
        let q_c_eval = prover.prover_key.logic.q_c.0.evaluate(&z_challenge);
        let q_l_eval =
            prover.prover_key.fixed_base.q_l.0.evaluate(&z_challenge);
        let q_r_eval =
            prover.prover_key.fixed_base.q_r.0.evaluate(&z_challenge);

        transcript.append_scalar(b"a_w_eval", &a_w_eval);
        transcript.append_scalar(b"b_w_eval", &b_w_eval);
        transcript.append_scalar(b"d_w_eval", &d_w_eval);

        // ---- FORGE q_arith_eval ----
        //
        // Compute the linearization poly value at z with
        // q_arith_eval = 0, then with q_arith_eval = 1, and solve
        // for the value that makes the verification equation hold.
        let q_arith_eval = {
            let z_h_eval = domain.evaluate_vanishing_polynomial(&z_challenge);
            let n_fr = BlsScalar::from(domain.size() as u64);
            let denom = n_fr * (z_challenge - BlsScalar::one());
            let _l1_eval = z_h_eval * denom.invert().unwrap();

            let pi_eval = proof::alloc::compute_barycentric_eval(
                &dense_public_inputs,
                &z_challenge,
                &domain,
            );

            let r_0_eval = pi_eval
                - _l1_eval * alpha.square()
                - alpha
                    * (a_eval + beta * s_sigma_1_eval + gamma)
                    * (b_eval + beta * s_sigma_2_eval + gamma)
                    * (c_eval + beta * s_sigma_3_eval + gamma)
                    * (d_eval + gamma)
                    * z_eval;

            // Evaluate linearization poly with q_arith_eval = 0
            let evals_q0 = ProofEvaluations {
                a_eval,
                b_eval,
                c_eval,
                d_eval,
                a_w_eval,
                b_w_eval,
                d_w_eval,
                q_arith_eval: BlsScalar::zero(),
                q_c_eval,
                q_l_eval,
                q_r_eval,
                s_sigma_1_eval,
                s_sigma_2_eval,
                s_sigma_3_eval,
                z_eval,
            };

            let r_poly_q0 = linearization_poly::compute(
                &prover.prover_key,
                &(
                    alpha,
                    beta,
                    gamma,
                    range_sep_challenge,
                    logic_sep_challenge,
                    fixed_base_sep_challenge,
                    var_base_sep_challenge,
                    z_challenge,
                ),
                &z_poly,
                &evals_q0,
                &domain,
                &t_low_poly,
                &t_mid_poly,
                &t_high_poly,
                &t_fourth_poly,
                &dense_public_inputs,
            );
            let r_q0_at_z = r_poly_q0.evaluate(&z_challenge);

            // Evaluate the per-unit contribution of q_arith_eval
            let evals_q1 = ProofEvaluations {
                q_arith_eval: BlsScalar::one(),
                ..evals_q0
            };
            let arith_base_poly = prover
                .prover_key
                .arithmetic
                .compute_linearization(&evals_q1);
            let arith_base_at_z = arith_base_poly.evaluate(&z_challenge);

            // Solve for the q_arith_eval that balances r(z) = target
            let target_r_at_z = -r_0_eval + pi_eval;
            (target_r_at_z - r_q0_at_z) * arith_base_at_z.invert().unwrap()
        };

        // Append forged selector evaluations to transcript
        transcript.append_scalar(b"q_arith_eval", &q_arith_eval);
        transcript.append_scalar(b"q_c_eval", &q_c_eval);
        transcript.append_scalar(b"q_l_eval", &q_l_eval);
        transcript.append_scalar(b"q_r_eval", &q_r_eval);

        let evaluations = ProofEvaluations {
            a_eval,
            b_eval,
            c_eval,
            d_eval,
            a_w_eval,
            b_w_eval,
            d_w_eval,
            q_arith_eval,
            q_c_eval,
            q_l_eval,
            q_r_eval,
            s_sigma_1_eval,
            s_sigma_2_eval,
            s_sigma_3_eval,
            z_eval,
        };

        // Round 5: compute opening proofs using forged evaluations
        let v_challenge = transcript.challenge_scalar(b"v_challenge");

        let r_poly = linearization_poly::compute(
            &prover.prover_key,
            &(
                alpha,
                beta,
                gamma,
                range_sep_challenge,
                logic_sep_challenge,
                fixed_base_sep_challenge,
                var_base_sep_challenge,
                z_challenge,
            ),
            &z_poly,
            &evaluations,
            &domain,
            &t_low_poly,
            &t_mid_poly,
            &t_high_poly,
            &t_fourth_poly,
            &dense_public_inputs,
        );

        let aggregate_witness = CommitKey::compute_aggregate_witness(
            &[
                r_poly,
                a_poly.clone(),
                b_poly.clone(),
                c_poly.clone(),
                d_poly.clone(),
                prover.prover_key.permutation.s_sigma_1.0.clone(),
                prover.prover_key.permutation.s_sigma_2.0.clone(),
                prover.prover_key.permutation.s_sigma_3.0.clone(),
            ],
            &z_challenge,
            &v_challenge,
        );
        let w_z_chall_comm =
            prover.commit_key.commit(&aggregate_witness).unwrap();

        let v_w_challenge = transcript.challenge_scalar(b"v_w_challenge");

        let shifted_aggregate_witness = CommitKey::compute_aggregate_witness(
            &[z_poly, a_poly, b_poly, d_poly],
            &(z_challenge * domain.group_gen),
            &v_w_challenge,
        );
        let w_z_chall_w_comm = prover
            .commit_key
            .commit(&shifted_aggregate_witness)
            .unwrap();

        let proof = Proof {
            a_comm,
            b_comm,
            c_comm,
            d_comm,
            z_comm,
            t_low_comm,
            t_mid_comm,
            t_high_comm,
            t_fourth_comm,
            w_z_chall_comm,
            w_z_chall_w_comm,
            evaluations,
        };

        (proof, public_inputs)
    }

    /// Verify that a forged proof exploiting unbound selector evaluations
    /// is rejected by the verifier.
    ///
    /// This test FAILS when the vulnerability is present (the forged proof
    /// passes verification). After applying the fix (binding selector
    /// evaluations in the batch opening proof), this test PASSES.
    #[test]
    fn forged_selector_eval_proof_must_be_rejected() {
        let mut rng = StdRng::seed_from_u64(0xdead_beef);
        let capacity = 1 << 4;
        let pp =
            PublicParameters::setup(capacity, &mut rng).expect("setup failed");

        let a = BlsScalar::from(3);
        let b = BlsScalar::from(5);
        let d = BlsScalar::from(7);
        let public = BlsScalar::from(11);
        let result = a + b + a * b + d + public + BlsScalar::one();

        let circuit = ArithCircuit {
            a,
            b,
            d,
            public,
            result,
        };

        let (prover, verifier) =
            Compiler::compile::<ArithCircuit>(&pp, b"soundness_test")
                .expect("compile failed");

        // Sanity: honest proof passes
        let (honest_proof, honest_pi) = prover
            .prove(&mut rng, &circuit)
            .expect("honest proof failed");
        verifier
            .verify(&honest_proof, &honest_pi)
            .expect("honest proof should verify");

        // Forged proof must NOT pass
        let (forged_proof, forged_pi) =
            forge_proof(&prover, &verifier, &circuit, &mut rng);

        assert!(
            verifier.verify(&forged_proof, &forged_pi).is_err(),
            "VULNERABILITY PRESENT: forged proof with fabricated \
             selector evaluations was accepted by the verifier. \
             q_arith_eval, q_c_eval, q_l_eval, and q_r_eval are \
             not bound by the batch opening proof, allowing a \
             malicious prover to forge them after seeing z_challenge."
        );
    }
}