//! Constants used in the Orchard protocol. use arrayvec::ArrayVec; use ff::{Field, PrimeField}; use group::Curve; use halo2::{ arithmetic::{lagrange_interpolate, CurveAffine, FieldExt}, pasta::pallas, }; pub mod commit_ivk_r; pub mod note_commit_r; pub mod nullifier_k; pub mod value_commit_r; pub mod value_commit_v; pub mod util; /// $\ell^\mathsf{Orchard}_\mathsf{base}$ pub(crate) const L_ORCHARD_BASE: usize = 255; /// $\ell_\mathsf{value}$ pub(crate) const L_VALUE: usize = 64; /// SWU hash-to-curve personalization for the spending key base point and /// the nullifier base point K^Orchard pub const ORCHARD_PERSONALIZATION: &str = "z.cash:Orchard"; /// SWU hash-to-curve personalization for the group hash for key diversification pub const KEY_DIVERSIFICATION_PERSONALIZATION: &str = "z.cash:Orchard-gd"; /// SWU hash-to-curve personalization for the value commitment generator pub const VALUE_COMMITMENT_PERSONALIZATION: &str = "z.cash:Orchard-cv"; /// SWU hash-to-curve personalization for the note commitment generator pub const NOTE_COMMITMENT_PERSONALIZATION: &str = "z.cash:Orchard-NoteCommit"; /// SWU hash-to-curve personalization for the IVK commitment generator pub const COMMIT_IVK_PERSONALIZATION: &str = "z.cash:Orchard-CommitIvk"; /// SWU hash-to-curve personalization for the Merkle CRH generator pub const MERKLE_CRH_PERSONALIZATION: &str = "z.cash:Orchard-MerkleCRH"; /// Window size for fixed-base scalar multiplication pub const FIXED_BASE_WINDOW_SIZE: usize = 3; /// $2^{`FIXED_BASE_WINDOW_SIZE`}$ pub const H: usize = 1 << FIXED_BASE_WINDOW_SIZE; /// Number of windows for a full-width scalar pub const NUM_WINDOWS: usize = (pallas::Base::NUM_BITS as usize + FIXED_BASE_WINDOW_SIZE - 1) / FIXED_BASE_WINDOW_SIZE; /// Number of windows for a short signed scalar pub const NUM_WINDOWS_SHORT: usize = (L_VALUE + FIXED_BASE_WINDOW_SIZE - 1) / FIXED_BASE_WINDOW_SIZE; /// Number of bits for which complete addition needs to be used in variable-base /// scalar multiplication pub const NUM_COMPLETE_BITS: usize = 3; #[derive(Copy, Clone, Debug)] pub struct CommitIvkR(pub OrchardFixedBase); #[derive(Copy, Clone, Debug)] pub struct NoteCommitR(pub OrchardFixedBase); #[derive(Copy, Clone, Debug)] pub struct NullifierK(pub OrchardFixedBase); #[derive(Copy, Clone, Debug)] pub struct ValueCommitR(pub OrchardFixedBase); #[derive(Copy, Clone, Debug)] pub struct ValueCommitV(pub OrchardFixedBase); #[derive(Copy, Clone, Debug, Eq, PartialEq)] pub struct OrchardFixedBase(C); impl OrchardFixedBase { pub fn new(generator: C) -> Self { OrchardFixedBase(generator) } pub fn value(&self) -> C { self.0 } } pub trait FixedBase { /// For each fixed base, we calculate its scalar multiples in three-bit windows. /// Each window will have $2^3 = 8$ points. fn compute_window_table(&self, num_windows: usize) -> Vec<[C; H]>; /// For each window, we interpolate the $x$-coordinate. /// Here, we pre-compute and store the coefficients of the interpolation polynomial. fn compute_lagrange_coeffs(&self, num_windows: usize) -> Vec<[C::Base; H]>; /// For each window, $z$ is a field element such that for each point $(x, y)$ in the window: /// - $z + y = u^2$ (some square in the field); and /// - $z - y$ is not a square. /// If successful, return a vector of `(z: u64, us: [C::Base; H])` for each window. fn find_zs_and_us(&self, num_windows: usize) -> Option>; } impl FixedBase for OrchardFixedBase { fn compute_window_table(&self, num_windows: usize) -> Vec<[C; H]> { let mut window_table: Vec<[C; H]> = Vec::with_capacity(num_windows); // Generate window table entries for all windows but the last. // For these first `num_windows - 1` windows, we compute the multiple [(k+1)*(8^w)]B. // Here, w ranges from [0..`num_windows - 1`) for w in 0..(num_windows - 1) { window_table.push( (0..H) .map(|k| { // scalar = (k+1)*(8^w) let scalar = C::ScalarExt::from_u64(k as u64 + 1) * C::ScalarExt::from_u64(H as u64).pow(&[w as u64, 0, 0, 0]); (self.0 * scalar).to_affine() }) .collect::>() .into_inner() .unwrap(), ); } // Generate window table entries for the last window, w = `num_windows - 1`. // For the last window, we compute [k * (8^w) - sum]B, where sum is defined // as sum = \sum_{j = 0}^{`num_windows - 2`} 8^j let sum = (0..(num_windows - 1)).fold(C::ScalarExt::zero(), |acc, w| { acc + C::ScalarExt::from_u64(H as u64).pow(&[w as u64, 0, 0, 0]) }); window_table.push( (0..H) .map(|k| { // scalar = k * (8^w) - sum, where w = `num_windows - 1` let scalar = C::ScalarExt::from_u64(k as u64) * C::ScalarExt::from_u64(H as u64).pow(&[ (num_windows - 1) as u64, 0, 0, 0, ]) - sum; (self.0 * scalar).to_affine() }) .collect::>() .into_inner() .unwrap(), ); window_table } fn compute_lagrange_coeffs(&self, num_windows: usize) -> Vec<[C::Base; H]> { // We are interpolating over the 3-bit window, k \in [0..8) let points: Vec<_> = (0..H).map(|i| C::Base::from_u64(i as u64)).collect(); let window_table = self.compute_window_table(num_windows); window_table .iter() .map(|window_points| { let x_window_points: Vec<_> = window_points .iter() .map(|point| *point.coordinates().unwrap().x()) .collect(); lagrange_interpolate(&points, &x_window_points) .into_iter() .collect::>() .into_inner() .unwrap() }) .collect() } /// For each window, z is a field element such that for each point (x, y) in the window: /// - z + y = u^2 (some square in the field); and /// - z - y is not a square. /// If successful, return a vector of `(z: u64, us: [C::Base; H])` for each window. fn find_zs_and_us(&self, num_windows: usize) -> Option> { // Closure to find z and u's for one window let find_z_and_us = |window_points: &[C]| { assert_eq!(H, window_points.len()); let ys: Vec<_> = window_points .iter() .map(|point| *point.coordinates().unwrap().y()) .collect(); (0..(1000 * (1 << (2 * H)))).find_map(|z| { ys.iter() .map(|&y| { if (-y + C::Base::from_u64(z)).sqrt().is_none().into() { (y + C::Base::from_u64(z)).sqrt().into() } else { None } }) .collect::>>() .map(|us| (z, us.into_inner().unwrap())) }) }; let window_table = self.compute_window_table(num_windows); window_table .iter() .map(|window_points| find_z_and_us(window_points)) .collect() } } trait TestFixedBase { // Test that Lagrange interpolation coefficients reproduce the correct x-coordinate // for each fixed-base multiple in each window. fn test_lagrange_coeffs(&self, num_windows: usize); // Test that the z-values and u-values satisfy the conditions: // 1. z + y = u^2, // 2. z - y is not a square // for the y-coordinate of each fixed-base multiple in each window. fn test_z(&self, z: &[u64], u: &[[[u8; 32]; H]], num_windows: usize); } impl TestFixedBase for OrchardFixedBase { fn test_lagrange_coeffs(&self, num_windows: usize) { let lagrange_coeffs = self.compute_lagrange_coeffs(num_windows); // Check first 84 windows, i.e. `k_0, k_1, ..., k_83` for (idx, coeffs) in lagrange_coeffs[0..(num_windows - 1)].iter().enumerate() { // Test each three-bit chunk in this window. for bits in 0..(1 << FIXED_BASE_WINDOW_SIZE) { { // Interpolate the x-coordinate using this window's coefficients let interpolated_x = util::evaluate::(bits, coeffs); // Compute the actual x-coordinate of the multiple [(k+1)*(8^w)]B. let point = self.0 * C::Scalar::from_u64(bits as u64 + 1) * C::Scalar::from_u64(H as u64).pow(&[idx as u64, 0, 0, 0]); let x = *point.to_affine().coordinates().unwrap().x(); // Check that the interpolated x-coordinate matches the actual one. assert_eq!(x, interpolated_x); } } } // Check last window. for bits in 0..(1 << FIXED_BASE_WINDOW_SIZE) { // Interpolate the x-coordinate using the last window's coefficients let interpolated_x = util::evaluate::(bits, &lagrange_coeffs[num_windows - 1]); // Compute the actual x-coordinate of the multiple [k * (8^84) - offset]B, // where offset = \sum_{j = 0}^{83} 8^j let offset = (0..(num_windows - 1)).fold(C::Scalar::zero(), |acc, w| { acc + C::Scalar::from_u64(H as u64).pow(&[w as u64, 0, 0, 0]) }); let scalar = C::Scalar::from_u64(bits as u64) * C::Scalar::from_u64(H as u64).pow(&[(num_windows - 1) as u64, 0, 0, 0]) - offset; let point = self.0 * scalar; let x = *point.to_affine().coordinates().unwrap().x(); // Check that the interpolated x-coordinate matches the actual one. assert_eq!(x, interpolated_x); } } fn test_z(&self, z: &[u64], u: &[[[u8; 32]; H]], num_windows: usize) { let window_table = self.compute_window_table(num_windows); for ((u, z), window_points) in u.iter().zip(z.iter()).zip(window_table) { for (u, point) in u.iter().zip(window_points.iter()) { let y = *point.coordinates().unwrap().y(); let u = C::Base::from_bytes(&u).unwrap(); assert_eq!(C::Base::from_u64(*z) + y, u * u); // allow either square root assert!(bool::from((C::Base::from_u64(*z) - y).sqrt().is_none())); } } } }