2020-09-07 16:22:25 +00:00
|
|
|
//! This module contains an implementation of the polynomial commitment scheme
|
|
|
|
|
//! described in the [Halo][halo] paper.
|
|
|
|
|
//!
|
|
|
|
|
//! [halo]: https://eprint.iacr.org/2019/1021
|
|
|
|
|
|
2020-09-09 13:00:36 +00:00
|
|
|
use super::{Coeff, Error, LagrangeCoeff, Polynomial};
|
|
|
|
|
use crate::arithmetic::{
|
|
|
|
|
best_fft, best_multiexp, get_challenge_scalar, parallelize, Challenge, Curve, CurveAffine,
|
|
|
|
|
Field,
|
|
|
|
|
};
|
2020-09-07 16:22:25 +00:00
|
|
|
use crate::transcript::Hasher;
|
|
|
|
|
use std::ops::{Add, AddAssign, Mul, MulAssign};
|
|
|
|
|
|
|
|
|
|
mod prover;
|
|
|
|
|
mod verifier;
|
|
|
|
|
|
|
|
|
|
/// This is a proof object for the polynomial commitment scheme opening.
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
|
pub struct OpeningProof<C: CurveAffine> {
|
|
|
|
|
fork: u8,
|
|
|
|
|
rounds: Vec<(C, C)>,
|
|
|
|
|
delta: C,
|
|
|
|
|
z1: C::Scalar,
|
|
|
|
|
z2: C::Scalar,
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-09 13:00:36 +00:00
|
|
|
/// A multiscalar multiplication in the polynomial commitment scheme
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
|
pub struct MSM<C: CurveAffine> {
|
2020-09-11 05:42:11 +00:00
|
|
|
/// TODO: documentation
|
|
|
|
|
pub g_scalars: Option<Vec<C::Scalar>>,
|
2020-09-10 11:50:02 +00:00
|
|
|
|
2020-09-11 05:42:11 +00:00
|
|
|
/// TODO: documentation
|
|
|
|
|
pub h_scalar: Option<C::Scalar>,
|
2020-09-10 11:50:02 +00:00
|
|
|
|
2020-09-11 05:42:11 +00:00
|
|
|
/// TODO: documentation
|
|
|
|
|
pub other_scalars: Vec<C::Scalar>,
|
2020-09-09 13:00:36 +00:00
|
|
|
|
2020-09-11 05:42:11 +00:00
|
|
|
/// TODO: documentation
|
|
|
|
|
pub other_bases: Vec<C>,
|
2020-09-09 13:00:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<'a, C: CurveAffine> MSM<C> {
|
|
|
|
|
/// Empty MSM
|
2020-09-11 05:42:11 +00:00
|
|
|
pub fn default(params: &Params<C>) -> Self {
|
|
|
|
|
let g_scalars = Some(vec![C::Scalar::one(); params.n as usize]);
|
|
|
|
|
let h_scalar = Some(C::Scalar::one());
|
|
|
|
|
let other_scalars: Vec<C::Scalar> = Vec::with_capacity(params.k as usize * 2 + 3);
|
|
|
|
|
let other_bases: Vec<C> = Vec::with_capacity(params.k as usize * 2 + 3);
|
2020-09-09 13:00:36 +00:00
|
|
|
|
2020-09-10 11:50:02 +00:00
|
|
|
MSM {
|
2020-09-11 05:42:11 +00:00
|
|
|
g_scalars,
|
|
|
|
|
h_scalar,
|
|
|
|
|
other_scalars,
|
|
|
|
|
other_bases,
|
2020-09-10 11:50:02 +00:00
|
|
|
}
|
2020-09-09 13:00:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Add arbitrary term (the scalar and the point)
|
|
|
|
|
pub fn add_term(&mut self, scalar: C::Scalar, point: C) {
|
2020-09-11 05:42:11 +00:00
|
|
|
&self.other_scalars.push(scalar);
|
|
|
|
|
&self.other_bases.push(point);
|
2020-09-09 13:00:36 +00:00
|
|
|
}
|
2020-09-10 11:50:02 +00:00
|
|
|
|
2020-09-11 05:42:11 +00:00
|
|
|
/// Add a vector of scalars to `g_scalars`
|
|
|
|
|
pub fn add_to_g(&mut self, scalars: Vec<C::Scalar>) {
|
|
|
|
|
for (g_scalar, scalar) in self
|
|
|
|
|
.g_scalars
|
|
|
|
|
.as_mut()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.iter_mut()
|
|
|
|
|
.zip(scalars.iter())
|
|
|
|
|
{
|
|
|
|
|
*g_scalar += &scalar;
|
|
|
|
|
}
|
2020-09-09 13:00:36 +00:00
|
|
|
}
|
2020-09-10 11:50:02 +00:00
|
|
|
|
2020-09-09 13:00:36 +00:00
|
|
|
/// Add term to h
|
2020-09-11 05:42:11 +00:00
|
|
|
pub fn add_to_h(&mut self, scalar: C::Scalar) {
|
|
|
|
|
self.h_scalar = Some(self.h_scalar.unwrap() + &scalar);
|
2020-09-09 13:00:36 +00:00
|
|
|
}
|
2020-09-10 11:50:02 +00:00
|
|
|
|
2020-09-11 05:42:11 +00:00
|
|
|
/// Scale all scalars in the MSM by a random blinding factor
|
2020-09-10 11:50:02 +00:00
|
|
|
pub fn scale(&mut self, factor: C::Scalar) {
|
2020-09-11 05:42:11 +00:00
|
|
|
for g_scalar in self.g_scalars.as_mut().unwrap().iter_mut() {
|
|
|
|
|
*g_scalar *= &factor;
|
|
|
|
|
}
|
|
|
|
|
for other_scalar in self.other_scalars.iter_mut() {
|
|
|
|
|
*other_scalar *= &factor;
|
2020-09-10 11:50:02 +00:00
|
|
|
}
|
2020-09-11 05:42:11 +00:00
|
|
|
self.h_scalar = Some(self.h_scalar.unwrap() * &factor);
|
2020-09-09 13:00:36 +00:00
|
|
|
}
|
2020-09-10 11:50:02 +00:00
|
|
|
|
2020-09-09 13:00:36 +00:00
|
|
|
/// Perform multiexp and check that it results in zero
|
2020-09-11 05:42:11 +00:00
|
|
|
pub fn is_zero(&self, params: &'a Params<C>) -> bool {
|
|
|
|
|
let mut scalars: Vec<C::Scalar> = vec![];
|
|
|
|
|
let mut bases: Vec<C> = vec![];
|
|
|
|
|
|
|
|
|
|
scalars.extend(&self.other_scalars);
|
|
|
|
|
bases.extend(&self.other_bases);
|
|
|
|
|
|
|
|
|
|
if let Some(h_scalar) = self.h_scalar {
|
|
|
|
|
scalars.push(h_scalar);
|
|
|
|
|
bases.push(params.h);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if let Some(g_scalars) = &self.g_scalars {
|
|
|
|
|
scalars.extend(g_scalars);
|
|
|
|
|
bases.extend(params.g.iter());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool::from(best_multiexp(&scalars, &bases).is_zero())
|
2020-09-09 13:00:36 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-07 16:22:25 +00:00
|
|
|
/// These are the public parameters for the polynomial commitment scheme.
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
|
pub struct Params<C: CurveAffine> {
|
|
|
|
|
pub(crate) k: u32,
|
|
|
|
|
pub(crate) n: u64,
|
|
|
|
|
pub(crate) g: Vec<C>,
|
|
|
|
|
pub(crate) g_lagrange: Vec<C>,
|
|
|
|
|
pub(crate) h: C,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<C: CurveAffine> Params<C> {
|
|
|
|
|
/// Initializes parameters for the curve, given a random oracle to draw
|
|
|
|
|
/// points from.
|
|
|
|
|
pub fn new<H: Hasher<C::Base>>(k: u32) -> Self {
|
|
|
|
|
// This is usually a limitation on the curve, but we also want 32-bit
|
|
|
|
|
// architectures to be supported.
|
|
|
|
|
assert!(k < 32);
|
|
|
|
|
// No goofy hardware please.
|
|
|
|
|
assert!(core::mem::size_of::<usize>() >= 4);
|
|
|
|
|
|
|
|
|
|
let n: u64 = 1 << k;
|
|
|
|
|
|
|
|
|
|
let g = {
|
|
|
|
|
let hasher = &H::init(C::Base::zero());
|
|
|
|
|
|
|
|
|
|
let mut g = Vec::with_capacity(n as usize);
|
|
|
|
|
g.resize(n as usize, C::zero());
|
|
|
|
|
|
|
|
|
|
parallelize(&mut g, move |g, start| {
|
|
|
|
|
let mut cur_value = C::Base::from(start as u64);
|
|
|
|
|
for g in g.iter_mut() {
|
|
|
|
|
let mut hasher = hasher.clone();
|
|
|
|
|
hasher.absorb(cur_value);
|
|
|
|
|
cur_value += &C::Base::one();
|
|
|
|
|
loop {
|
|
|
|
|
let x = hasher.squeeze().to_bytes();
|
|
|
|
|
let p = C::from_bytes(&x);
|
|
|
|
|
if bool::from(p.is_some()) {
|
|
|
|
|
*g = p.unwrap();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
g
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Let's evaluate all of the Lagrange basis polynomials
|
|
|
|
|
// using an inverse FFT.
|
|
|
|
|
let mut alpha_inv = C::Scalar::ROOT_OF_UNITY_INV;
|
|
|
|
|
for _ in k..C::Scalar::S {
|
|
|
|
|
alpha_inv = alpha_inv.square();
|
|
|
|
|
}
|
|
|
|
|
let mut g_lagrange_projective = g.iter().map(|g| g.to_projective()).collect::<Vec<_>>();
|
|
|
|
|
best_fft(&mut g_lagrange_projective, alpha_inv, k);
|
|
|
|
|
let minv = C::Scalar::TWO_INV.pow_vartime(&[k as u64, 0, 0, 0]);
|
|
|
|
|
parallelize(&mut g_lagrange_projective, |g, _| {
|
|
|
|
|
for g in g.iter_mut() {
|
|
|
|
|
*g *= minv;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
let g_lagrange = {
|
|
|
|
|
let mut g_lagrange = vec![C::zero(); n as usize];
|
|
|
|
|
parallelize(&mut g_lagrange, |g_lagrange, starts| {
|
|
|
|
|
C::Projective::batch_to_affine(
|
|
|
|
|
&g_lagrange_projective[starts..(starts + g_lagrange.len())],
|
|
|
|
|
g_lagrange,
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
drop(g_lagrange_projective);
|
|
|
|
|
g_lagrange
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
let h = {
|
|
|
|
|
let mut hasher = H::init(C::Base::zero());
|
|
|
|
|
hasher.absorb(-C::Base::one());
|
|
|
|
|
let x = hasher.squeeze().to_bytes();
|
|
|
|
|
let p = C::from_bytes(&x);
|
|
|
|
|
p.unwrap()
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Params {
|
|
|
|
|
k,
|
|
|
|
|
n,
|
|
|
|
|
g,
|
|
|
|
|
g_lagrange,
|
|
|
|
|
h,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// This computes a commitment to a polynomial described by the provided
|
|
|
|
|
/// slice of coefficients. The commitment will be blinded by the blinding
|
|
|
|
|
/// factor `r`.
|
|
|
|
|
pub fn commit(
|
|
|
|
|
&self,
|
|
|
|
|
poly: &Polynomial<C::Scalar, Coeff>,
|
|
|
|
|
r: Blind<C::Scalar>,
|
|
|
|
|
) -> C::Projective {
|
|
|
|
|
let mut tmp_scalars = Vec::with_capacity(poly.len() + 1);
|
|
|
|
|
let mut tmp_bases = Vec::with_capacity(poly.len() + 1);
|
|
|
|
|
|
|
|
|
|
tmp_scalars.extend(poly.iter());
|
|
|
|
|
tmp_scalars.push(r.0);
|
|
|
|
|
|
|
|
|
|
tmp_bases.extend(self.g.iter());
|
|
|
|
|
tmp_bases.push(self.h);
|
|
|
|
|
|
|
|
|
|
best_multiexp::<C>(&tmp_scalars, &tmp_bases)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// This commits to a polynomial using its evaluations over the $2^k$ size
|
|
|
|
|
/// evaluation domain. The commitment will be blinded by the blinding factor
|
|
|
|
|
/// `r`.
|
|
|
|
|
pub fn commit_lagrange(
|
|
|
|
|
&self,
|
|
|
|
|
poly: &Polynomial<C::Scalar, LagrangeCoeff>,
|
|
|
|
|
r: Blind<C::Scalar>,
|
|
|
|
|
) -> C::Projective {
|
|
|
|
|
let mut tmp_scalars = Vec::with_capacity(poly.len() + 1);
|
|
|
|
|
let mut tmp_bases = Vec::with_capacity(poly.len() + 1);
|
|
|
|
|
|
|
|
|
|
tmp_scalars.extend(poly.iter());
|
|
|
|
|
tmp_scalars.push(r.0);
|
|
|
|
|
|
|
|
|
|
tmp_bases.extend(self.g_lagrange.iter());
|
|
|
|
|
tmp_bases.push(self.h);
|
|
|
|
|
|
|
|
|
|
best_multiexp::<C>(&tmp_scalars, &tmp_bases)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-09 13:00:36 +00:00
|
|
|
/// A guard returned by the verifier
|
|
|
|
|
#[derive(Debug)]
|
2020-09-11 05:42:11 +00:00
|
|
|
pub struct Guard<C: CurveAffine> {
|
|
|
|
|
/// MSM
|
|
|
|
|
msm: MSM<C>,
|
2020-09-10 11:50:02 +00:00
|
|
|
|
2020-09-09 13:00:36 +00:00
|
|
|
/// Negation of z1 value in the OpeningProof
|
2020-09-11 05:42:11 +00:00
|
|
|
neg_z1: C::Scalar,
|
2020-09-09 13:00:36 +00:00
|
|
|
|
2020-09-11 05:42:11 +00:00
|
|
|
allinv: C::Scalar,
|
2020-09-09 13:00:36 +00:00
|
|
|
|
2020-09-11 05:42:11 +00:00
|
|
|
challenges_sq: Vec<C::Scalar>,
|
2020-09-09 13:00:36 +00:00
|
|
|
}
|
|
|
|
|
|
2020-09-11 05:42:11 +00:00
|
|
|
impl<C: CurveAffine> Guard<C> {
|
2020-09-09 13:00:36 +00:00
|
|
|
/// Lets caller supply the challenges and obtain an MSM with updated
|
|
|
|
|
/// scalars and points.
|
|
|
|
|
pub fn use_challenges(
|
2020-09-11 05:42:11 +00:00
|
|
|
mut self,
|
|
|
|
|
params: &Params<C>,
|
2020-09-09 13:00:36 +00:00
|
|
|
challenges_sq_packed: Vec<Challenge>,
|
|
|
|
|
) -> Result<MSM<C>, Error> {
|
2020-09-11 05:42:11 +00:00
|
|
|
let mut scalars: Vec<C::Scalar> = vec![];
|
|
|
|
|
let mut bases: Vec<C> = vec![];
|
|
|
|
|
|
|
|
|
|
scalars.extend(&self.msm.other_scalars);
|
|
|
|
|
bases.extend(&self.msm.other_bases);
|
|
|
|
|
|
|
|
|
|
// - [z2] H
|
|
|
|
|
if let Some(h_scalar) = self.msm.h_scalar {
|
|
|
|
|
scalars.push(h_scalar);
|
|
|
|
|
bases.push(params.h);
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-09 13:00:36 +00:00
|
|
|
// - [z1] G
|
|
|
|
|
let mut allinv = C::Scalar::one();
|
2020-09-11 05:42:11 +00:00
|
|
|
let mut challenges_sq = Vec::with_capacity(params.k as usize);
|
2020-09-09 13:00:36 +00:00
|
|
|
|
2020-09-11 05:42:11 +00:00
|
|
|
for challenge_sq_packed in challenges_sq_packed.iter() {
|
|
|
|
|
let challenge_sq: C::Scalar = get_challenge_scalar(*challenge_sq_packed);
|
2020-09-09 13:00:36 +00:00
|
|
|
challenges_sq.push(challenge_sq);
|
|
|
|
|
|
|
|
|
|
let challenge = challenge_sq.deterministic_sqrt();
|
|
|
|
|
let challenge = challenge.unwrap();
|
|
|
|
|
|
|
|
|
|
let challenge_inv = challenge.invert();
|
|
|
|
|
let challenge_inv = challenge_inv.unwrap();
|
|
|
|
|
allinv *= &challenge_inv;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-11 05:42:11 +00:00
|
|
|
let s = compute_s(&challenges_sq, allinv * &self.neg_z1);
|
|
|
|
|
scalars.extend(&s);
|
|
|
|
|
bases.extend(¶ms.g);
|
|
|
|
|
|
|
|
|
|
self.msm.g_scalars = Some(s);
|
|
|
|
|
|
|
|
|
|
Ok(self.msm)
|
2020-09-09 13:00:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Lets caller supply the purported G point and simply appends it to
|
|
|
|
|
/// return an updated MSM.
|
2020-09-11 05:42:11 +00:00
|
|
|
pub fn use_g(mut self, g: C) -> Result<MSM<C>, Error> {
|
|
|
|
|
&self.msm.other_scalars.push(self.allinv * &self.neg_z1);
|
|
|
|
|
&self.msm.other_bases.push(g);
|
|
|
|
|
|
|
|
|
|
Ok(self.msm)
|
2020-09-09 13:00:36 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-07 16:22:25 +00:00
|
|
|
/// Wrapper type around a blinding factor.
|
|
|
|
|
#[derive(Copy, Clone, Eq, PartialEq, Debug)]
|
|
|
|
|
pub struct Blind<F>(pub F);
|
|
|
|
|
|
|
|
|
|
impl<F: Field> Default for Blind<F> {
|
|
|
|
|
fn default() -> Self {
|
|
|
|
|
Blind(F::one())
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<F: Field> Add for Blind<F> {
|
|
|
|
|
type Output = Self;
|
|
|
|
|
|
|
|
|
|
fn add(self, rhs: Blind<F>) -> Self {
|
|
|
|
|
Blind(self.0 + rhs.0)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<F: Field> Mul for Blind<F> {
|
|
|
|
|
type Output = Self;
|
|
|
|
|
|
|
|
|
|
fn mul(self, rhs: Blind<F>) -> Self {
|
|
|
|
|
Blind(self.0 * rhs.0)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<F: Field> AddAssign for Blind<F> {
|
|
|
|
|
fn add_assign(&mut self, rhs: Blind<F>) {
|
|
|
|
|
self.0 += rhs.0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<F: Field> MulAssign for Blind<F> {
|
|
|
|
|
fn mul_assign(&mut self, rhs: Blind<F>) {
|
|
|
|
|
self.0 *= rhs.0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<F: Field> AddAssign<F> for Blind<F> {
|
|
|
|
|
fn add_assign(&mut self, rhs: F) {
|
|
|
|
|
self.0 += rhs;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<F: Field> MulAssign<F> for Blind<F> {
|
|
|
|
|
fn mul_assign(&mut self, rhs: F) {
|
|
|
|
|
self.0 *= rhs;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_commit_lagrange() {
|
|
|
|
|
const K: u32 = 6;
|
|
|
|
|
|
|
|
|
|
use crate::arithmetic::{EpAffine, Fp, Fq};
|
|
|
|
|
use crate::transcript::DummyHash;
|
|
|
|
|
let params = Params::<EpAffine>::new::<DummyHash<Fp>>(K);
|
|
|
|
|
let domain = super::EvaluationDomain::new(1, K);
|
|
|
|
|
|
|
|
|
|
let mut a = domain.empty_lagrange();
|
|
|
|
|
|
|
|
|
|
for (i, a) in a.iter_mut().enumerate() {
|
|
|
|
|
*a = Fq::from(i as u64);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let b = domain.lagrange_to_coeff(a.clone());
|
|
|
|
|
|
|
|
|
|
let alpha = Blind(Fq::random());
|
|
|
|
|
|
|
|
|
|
assert_eq!(params.commit(&b, alpha), params.commit_lagrange(&a, alpha));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_opening_proof() {
|
|
|
|
|
const K: u32 = 6;
|
|
|
|
|
|
|
|
|
|
use super::{
|
|
|
|
|
commitment::{Blind, Params},
|
|
|
|
|
EvaluationDomain,
|
|
|
|
|
};
|
|
|
|
|
use crate::arithmetic::{
|
|
|
|
|
eval_polynomial, get_challenge_scalar, Challenge, Curve, EpAffine, Field, Fp, Fq,
|
|
|
|
|
};
|
|
|
|
|
use crate::transcript::{DummyHash, Hasher};
|
|
|
|
|
|
|
|
|
|
let params = Params::<EpAffine>::new::<DummyHash<Fp>>(K);
|
|
|
|
|
let domain = EvaluationDomain::new(1, K);
|
|
|
|
|
|
|
|
|
|
let mut px = domain.empty_coeff();
|
|
|
|
|
|
|
|
|
|
for (i, a) in px.iter_mut().enumerate() {
|
|
|
|
|
*a = Fq::from(i as u64);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let blind = Blind(Fq::random());
|
|
|
|
|
|
|
|
|
|
let p = params.commit(&px, blind).to_affine();
|
|
|
|
|
|
|
|
|
|
let mut transcript = DummyHash::init(Field::one());
|
|
|
|
|
let (p_x, p_y) = p.get_xy().unwrap();
|
|
|
|
|
transcript.absorb(p_x);
|
|
|
|
|
transcript.absorb(p_y);
|
|
|
|
|
let x_packed = transcript.squeeze().get_lower_128();
|
|
|
|
|
let x: Fq = get_challenge_scalar(Challenge(x_packed));
|
|
|
|
|
|
|
|
|
|
// Evaluate the polynomial
|
|
|
|
|
let v = eval_polynomial(&px, x);
|
|
|
|
|
|
|
|
|
|
transcript.absorb(Fp::from_bytes(&v.to_bytes()).unwrap()); // unlikely to fail since p ~ q
|
|
|
|
|
|
|
|
|
|
loop {
|
|
|
|
|
let mut transcript_dup = transcript.clone();
|
|
|
|
|
|
|
|
|
|
let opening_proof = OpeningProof::create(¶ms, &mut transcript, &px, blind, x);
|
|
|
|
|
if opening_proof.is_err() {
|
|
|
|
|
transcript = transcript_dup;
|
|
|
|
|
transcript.absorb(Field::one());
|
|
|
|
|
} else {
|
|
|
|
|
let opening_proof = opening_proof.unwrap();
|
2020-09-09 13:00:36 +00:00
|
|
|
// Verify the opening proof
|
2020-09-11 05:42:11 +00:00
|
|
|
let msm = MSM::default(¶ms);
|
|
|
|
|
let (challenges, guard) = opening_proof
|
|
|
|
|
.verify(¶ms, msm, &mut transcript_dup, x, &p, v)
|
2020-09-09 13:00:36 +00:00
|
|
|
.unwrap();
|
|
|
|
|
|
2020-09-11 05:42:11 +00:00
|
|
|
let msm = guard.use_challenges(¶ms, challenges).unwrap();
|
2020-09-09 13:00:36 +00:00
|
|
|
|
2020-09-11 05:42:11 +00:00
|
|
|
assert!(msm.is_zero(¶ms));
|
2020-09-07 16:22:25 +00:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-09-09 13:00:36 +00:00
|
|
|
|
|
|
|
|
// TODO: parallelize
|
|
|
|
|
fn compute_s<F: Field>(challenges_sq: &[F], allinv: F) -> Vec<F> {
|
|
|
|
|
let lg_n = challenges_sq.len();
|
|
|
|
|
let n = 1 << lg_n;
|
|
|
|
|
|
|
|
|
|
let mut s = Vec::with_capacity(n);
|
|
|
|
|
s.push(allinv);
|
|
|
|
|
for i in 1..n {
|
|
|
|
|
let lg_i = (32 - 1 - (i as u32).leading_zeros()) as usize;
|
|
|
|
|
let k = 1 << lg_i;
|
|
|
|
|
let u_lg_i_sq = challenges_sq[(lg_n - 1) - lg_i];
|
|
|
|
|
s.push(s[i - k] * u_lg_i_sq);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s
|
|
|
|
|
}
|