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
use std::iter;
use ff::Field;
use group::Curve;
use rand_core::RngCore;
use super::Argument;
use crate::{
arithmetic::{eval_polynomial, CurveAffine, FieldExt},
plonk::{ChallengeX, ChallengeY, Error},
poly::{
self,
commitment::{Blind, ParamsProver},
Coeff, EvaluationDomain, ExtendedLagrangeCoeff, Polynomial, ProverQuery,
},
transcript::{EncodedChallenge, TranscriptWrite},
};
pub(in crate::plonk) struct Committed<C: CurveAffine> {
random_poly: Polynomial<C::Scalar, Coeff>,
random_blind: Blind<C::Scalar>,
}
pub(in crate::plonk) struct Constructed<C: CurveAffine> {
h_pieces: Vec<Polynomial<C::Scalar, Coeff>>,
h_blinds: Vec<Blind<C::Scalar>>,
committed: Committed<C>,
}
pub(in crate::plonk) struct Evaluated<C: CurveAffine> {
h_poly: Polynomial<C::Scalar, Coeff>,
h_blind: Blind<C::Scalar>,
committed: Committed<C>,
}
impl<C: CurveAffine> Argument<C> {
pub(in crate::plonk) fn commit<
'params,
P: ParamsProver<'params, C>,
E: EncodedChallenge<C>,
R: RngCore,
T: TranscriptWrite<C, E>,
>(
params: &P,
domain: &EvaluationDomain<C::Scalar>,
mut rng: R,
transcript: &mut T,
) -> Result<Committed<C>, Error> {
let mut random_poly = domain.empty_coeff();
for coeff in random_poly.iter_mut() {
*coeff = C::Scalar::random(&mut rng);
}
let random_blind = Blind(C::Scalar::random(rng));
let c = params.commit(&random_poly, random_blind).to_affine();
transcript.write_point(c)?;
Ok(Committed {
random_poly,
random_blind,
})
}
}
impl<C: CurveAffine> Committed<C> {
pub(in crate::plonk) fn construct<
'params,
P: ParamsProver<'params, C>,
E: EncodedChallenge<C>,
R: RngCore,
T: TranscriptWrite<C, E>,
>(
self,
params: &P,
domain: &EvaluationDomain<C::Scalar>,
h_poly: Polynomial<C::Scalar, ExtendedLagrangeCoeff>,
mut rng: R,
transcript: &mut T,
) -> Result<Constructed<C>, Error> {
let h_poly = domain.divide_by_vanishing_poly(h_poly);
let h_poly = domain.extended_to_coeff(h_poly);
let h_pieces = h_poly
.chunks_exact(params.n() as usize)
.map(|v| domain.coeff_from_vec(v.to_vec()))
.collect::<Vec<_>>();
drop(h_poly);
let h_blinds: Vec<_> = h_pieces
.iter()
.map(|_| Blind(C::Scalar::random(&mut rng)))
.collect();
let h_commitments_projective: Vec<_> = h_pieces
.iter()
.zip(h_blinds.iter())
.map(|(h_piece, blind)| params.commit(h_piece, *blind))
.collect();
let mut h_commitments = vec![C::identity(); h_commitments_projective.len()];
C::Curve::batch_normalize(&h_commitments_projective, &mut h_commitments);
let h_commitments = h_commitments;
for c in h_commitments.iter() {
transcript.write_point(*c)?;
}
Ok(Constructed {
h_pieces,
h_blinds,
committed: self,
})
}
}
impl<C: CurveAffine> Constructed<C> {
pub(in crate::plonk) fn evaluate<E: EncodedChallenge<C>, T: TranscriptWrite<C, E>>(
self,
x: ChallengeX<C>,
xn: C::Scalar,
domain: &EvaluationDomain<C::Scalar>,
transcript: &mut T,
) -> Result<Evaluated<C>, Error> {
let h_poly = self
.h_pieces
.iter()
.rev()
.fold(domain.empty_coeff(), |acc, eval| acc * xn + eval);
let h_blind = self
.h_blinds
.iter()
.rev()
.fold(Blind(C::Scalar::zero()), |acc, eval| {
acc * Blind(xn) + *eval
});
let random_eval = eval_polynomial(&self.committed.random_poly, *x);
transcript.write_scalar(random_eval)?;
Ok(Evaluated {
h_poly,
h_blind,
committed: self.committed,
})
}
}
impl<C: CurveAffine> Evaluated<C> {
pub(in crate::plonk) fn open(
&self,
x: ChallengeX<C>,
) -> impl Iterator<Item = ProverQuery<'_, C>> + Clone {
iter::empty()
.chain(Some(ProverQuery {
point: *x,
poly: &self.h_poly,
blind: self.h_blind,
}))
.chain(Some(ProverQuery {
point: *x,
poly: &self.committed.random_poly,
blind: self.committed.random_blind,
}))
}
}