chip::witness_point.rs: Implement witness_point() instruction.

This commit is contained in:
therealyingtong 2021-06-05 14:08:51 +08:00
parent 6627b2258f
commit 7eb86eb0c2
2 changed files with 89 additions and 3 deletions

View File

@ -14,7 +14,7 @@ use std::marker::PhantomData;
// pub(super) mod add_incomplete;
// pub(super) mod mul;
// pub(super) mod mul_fixed;
// pub(super) mod witness_point;
pub(super) mod witness_point;
// pub(super) mod witness_scalar_fixed;
/// A curve point represented in affine (x, y) coordinates. Each coordinate is
@ -145,7 +145,11 @@ where
perm,
};
// TODO: create gates
// Create witness point gate
{
let config: witness_point::Config = (&config).into();
config.create_gate::<C>(meta);
}
config
}
@ -226,7 +230,11 @@ where
layouter: &mut impl Layouter<C::Base>,
value: Option<C>,
) -> Result<Self::Point, Error> {
todo!()
let config: witness_point::Config = self.config().into();
layouter.assign_region(
|| "witness point",
|mut region| config.assign_region(value, 0, &mut region),
)
}
fn extract_p(point: &Self::Point) -> &Self::X {

View File

@ -0,0 +1,78 @@
use super::{CellValue, EccConfig, EccPoint, Var};
use halo2::{
arithmetic::CurveAffine,
circuit::Region,
plonk::{Advice, Column, ConstraintSystem, Error, Expression, Selector},
poly::Rotation,
};
#[derive(Clone, Debug)]
pub struct Config {
q_point: Selector,
// x-coordinate
pub x: Column<Advice>,
// y-coordinate
pub y: Column<Advice>,
}
impl From<&EccConfig> for Config {
fn from(ecc_config: &EccConfig) -> Self {
Self {
q_point: ecc_config.q_point,
x: ecc_config.advices[0],
y: ecc_config.advices[1],
}
}
}
impl Config {
pub(super) fn create_gate<C: CurveAffine>(&self, meta: &mut ConstraintSystem<C::Base>) {
meta.create_gate("witness point", |meta| {
let q_point = meta.query_selector(self.q_point);
let x = meta.query_advice(self.x, Rotation::cur());
let y = meta.query_advice(self.y, Rotation::cur());
// Check that y^2 = x^3 + b, where b = 5 in the Pallas equation
vec![
q_point
* (y.clone() * y - (x.clone() * x.clone() * x) - Expression::Constant(C::b())),
]
});
}
pub(super) fn assign_region<C: CurveAffine>(
&self,
value: Option<C>,
offset: usize,
region: &mut Region<'_, C::Base>,
) -> Result<EccPoint<C>, Error> {
// Enable `q_point` selector
self.q_point.enable(region, offset)?;
let value = value.map(|value| value.coordinates().unwrap());
// Assign `x` value
let x_val = value.map(|value| *value.x());
let x_var = region.assign_advice(
|| "x",
self.x,
offset,
|| x_val.ok_or(Error::SynthesisError),
)?;
// Assign `y` value
let y_val = value.map(|value| *value.y());
let y_var = region.assign_advice(
|| "y",
self.y,
offset,
|| y_val.ok_or(Error::SynthesisError),
)?;
Ok(EccPoint {
x: CellValue::<C::Base>::new(x_var, x_val),
y: CellValue::<C::Base>::new(y_var, y_val),
})
}
}