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
use std::{fmt::Debug, ops::Deref};
use super::commitment::{Blind, CommitmentScheme, Params, MSM};
use crate::{
arithmetic::eval_polynomial,
poly::{commitment, Coeff, Polynomial},
};
use ff::Field;
use halo2curves::CurveAffine;
pub trait Query<F>: Sized + Clone + Send + Sync {
type Commitment: PartialEq + Copy + Send + Sync;
type Eval: Clone + Default + Debug;
fn get_point(&self) -> F;
fn get_eval(&self) -> Self::Eval;
fn get_commitment(&self) -> Self::Commitment;
}
#[derive(Debug, Clone)]
pub struct ProverQuery<'com, C: CurveAffine> {
pub(crate) point: C::Scalar,
pub(crate) poly: &'com Polynomial<C::Scalar, Coeff>,
pub(crate) blind: Blind<C::Scalar>,
}
#[doc(hidden)]
#[derive(Copy, Clone)]
pub struct PolynomialPointer<'com, C: CurveAffine> {
pub(crate) poly: &'com Polynomial<C::Scalar, Coeff>,
pub(crate) blind: Blind<C::Scalar>,
}
impl<'com, C: CurveAffine> PartialEq for PolynomialPointer<'com, C> {
fn eq(&self, other: &Self) -> bool {
std::ptr::eq(self.poly, other.poly)
}
}
impl<'com, C: CurveAffine> Query<C::Scalar> for ProverQuery<'com, C> {
type Commitment = PolynomialPointer<'com, C>;
type Eval = C::Scalar;
fn get_point(&self) -> C::Scalar {
self.point
}
fn get_eval(&self) -> Self::Eval {
eval_polynomial(&self.poly[..], self.get_point())
}
fn get_commitment(&self) -> Self::Commitment {
PolynomialPointer {
poly: self.poly,
blind: self.blind,
}
}
}
impl<'com, C: CurveAffine, M: MSM<C>> VerifierQuery<'com, C, M> {
pub fn new_commitment(commitment: &'com C, point: C::Scalar, eval: C::Scalar) -> Self {
VerifierQuery {
point,
eval,
commitment: CommitmentReference::Commitment(commitment),
}
}
pub fn new_msm(msm: &'com M, point: C::Scalar, eval: C::Scalar) -> VerifierQuery<'com, C, M> {
VerifierQuery {
point,
eval,
commitment: CommitmentReference::MSM(msm),
}
}
}
#[derive(Debug)]
pub struct VerifierQuery<'com, C: CurveAffine, M: MSM<C>> {
pub(crate) point: C::Scalar,
pub(crate) commitment: CommitmentReference<'com, C, M>,
pub(crate) eval: C::Scalar,
}
impl<'com, C: CurveAffine, M: MSM<C>> Clone for VerifierQuery<'com, C, M> {
fn clone(&self) -> Self {
Self {
point: self.point,
commitment: self.commitment,
eval: self.eval,
}
}
}
#[derive(Clone, Debug)]
pub enum CommitmentReference<'r, C: CurveAffine, M: MSM<C>> {
Commitment(&'r C),
MSM(&'r M),
}
impl<'r, C: CurveAffine, M: MSM<C>> Copy for CommitmentReference<'r, C, M> {}
impl<'r, C: CurveAffine, M: MSM<C>> PartialEq for CommitmentReference<'r, C, M> {
#![allow(clippy::vtable_address_comparisons)]
fn eq(&self, other: &Self) -> bool {
match (self, other) {
(&CommitmentReference::Commitment(a), &CommitmentReference::Commitment(b)) => {
std::ptr::eq(a, b)
}
(&CommitmentReference::MSM(a), &CommitmentReference::MSM(b)) => std::ptr::eq(a, b),
_ => false,
}
}
}
impl<'com, C: CurveAffine, M: MSM<C>> Query<C::Scalar> for VerifierQuery<'com, C, M> {
type Eval = C::Scalar;
type Commitment = CommitmentReference<'com, C, M>;
fn get_point(&self) -> C::Scalar {
self.point
}
fn get_eval(&self) -> C::Scalar {
self.eval
}
fn get_commitment(&self) -> Self::Commitment {
self.commitment
}
}