2022-07-26 02:05:15 -05:00
|
|
|
// Required to be for this entire file, which isn't an issue, as it wouldn't bind to the static
|
|
|
|
|
#![allow(non_upper_case_globals)]
|
|
|
|
|
|
|
|
|
|
use lazy_static::lazy_static;
|
|
|
|
|
use rand_core::{RngCore, CryptoRng};
|
|
|
|
|
|
2022-07-26 08:06:56 -04:00
|
|
|
use curve25519_dalek::{scalar::Scalar as DalekScalar, edwards::EdwardsPoint as DalekPoint};
|
|
|
|
|
|
2022-07-26 02:05:15 -05:00
|
|
|
use group::{ff::Field, Group};
|
2022-07-27 04:05:43 -05:00
|
|
|
use dalek_ff_group::{ED25519_BASEPOINT_POINT, Scalar, EdwardsPoint};
|
2022-07-26 02:05:15 -05:00
|
|
|
|
2022-07-27 04:05:43 -05:00
|
|
|
use multiexp::multiexp as const_multiexp;
|
|
|
|
|
|
|
|
|
|
fn prove_multiexp(pairs: &[(Scalar, EdwardsPoint)]) -> EdwardsPoint {
|
|
|
|
|
const_multiexp(pairs) * *INV_EIGHT
|
|
|
|
|
}
|
2022-07-26 02:05:15 -05:00
|
|
|
|
|
|
|
|
use crate::{
|
2022-07-27 04:05:43 -05:00
|
|
|
H as DALEK_H, Commitment, hash, hash_to_scalar as dalek_hash,
|
2022-07-26 08:06:56 -04:00
|
|
|
ringct::{hash_to_point::raw_hash_to_point, bulletproofs::scalar_vector::*},
|
2022-07-26 02:05:15 -05:00
|
|
|
serialize::write_varint,
|
|
|
|
|
};
|
|
|
|
|
|
2022-07-26 08:06:56 -04:00
|
|
|
// Bring things into ff/group
|
|
|
|
|
lazy_static! {
|
|
|
|
|
static ref INV_EIGHT: Scalar = Scalar::from(8u8).invert().unwrap();
|
|
|
|
|
static ref H: EdwardsPoint = EdwardsPoint(*DALEK_H);
|
|
|
|
|
}
|
2022-07-26 02:05:15 -05:00
|
|
|
|
|
|
|
|
fn hash_to_scalar(data: &[u8]) -> Scalar {
|
2022-07-26 03:25:57 -04:00
|
|
|
Scalar(dalek_hash(data))
|
2022-07-26 02:05:15 -05:00
|
|
|
}
|
|
|
|
|
|
2022-07-26 08:06:56 -04:00
|
|
|
// Components common between variants
|
|
|
|
|
pub(crate) const MAX_M: usize = 16;
|
|
|
|
|
const N: usize = 64;
|
|
|
|
|
const MAX_MN: usize = MAX_M * N;
|
2022-07-26 02:05:15 -05:00
|
|
|
|
2022-07-26 08:06:56 -04:00
|
|
|
struct Generators {
|
|
|
|
|
G: Vec<EdwardsPoint>,
|
|
|
|
|
H: Vec<EdwardsPoint>,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn generators_core(prefix: &'static [u8]) -> Generators {
|
|
|
|
|
let mut res = Generators { G: Vec::with_capacity(MAX_MN), H: Vec::with_capacity(MAX_MN) };
|
|
|
|
|
for i in 0 .. MAX_MN {
|
|
|
|
|
let i = 2 * i;
|
|
|
|
|
|
|
|
|
|
let mut even = (*H).compress().to_bytes().to_vec();
|
|
|
|
|
even.extend(prefix);
|
|
|
|
|
let mut odd = even.clone();
|
|
|
|
|
|
|
|
|
|
write_varint(&i.try_into().unwrap(), &mut even).unwrap();
|
|
|
|
|
write_varint(&(i + 1).try_into().unwrap(), &mut odd).unwrap();
|
|
|
|
|
res.H.push(EdwardsPoint(raw_hash_to_point(hash(&even))));
|
|
|
|
|
res.G.push(EdwardsPoint(raw_hash_to_point(hash(&odd))));
|
|
|
|
|
}
|
|
|
|
|
res
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-27 04:05:43 -05:00
|
|
|
// TODO: Have this take in other, multiplied by G, and do a single multiexp
|
2022-07-26 08:06:56 -04:00
|
|
|
fn vector_exponent(generators: &Generators, a: &ScalarVector, b: &ScalarVector) -> EdwardsPoint {
|
2022-07-26 05:31:15 -04:00
|
|
|
debug_assert_eq!(a.len(), b.len());
|
2022-07-26 08:06:56 -04:00
|
|
|
(a * &generators.G[.. a.len()]) + (b * &generators.H[.. b.len()])
|
2022-07-26 02:05:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn hash_cache(cache: &mut Scalar, mash: &[[u8; 32]]) -> Scalar {
|
|
|
|
|
let slice =
|
|
|
|
|
&[cache.to_bytes().as_ref(), mash.iter().cloned().flatten().collect::<Vec<_>>().as_ref()]
|
|
|
|
|
.concat();
|
|
|
|
|
*cache = hash_to_scalar(slice);
|
|
|
|
|
*cache
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-26 08:06:56 -04:00
|
|
|
fn MN(outputs: usize) -> (usize, usize, usize) {
|
2022-07-26 02:05:15 -05:00
|
|
|
let logN = 6;
|
2022-07-26 05:31:15 -04:00
|
|
|
debug_assert_eq!(N, 1 << logN);
|
2022-07-26 02:05:15 -05:00
|
|
|
|
|
|
|
|
let mut logM = 0;
|
|
|
|
|
let mut M;
|
|
|
|
|
while {
|
|
|
|
|
M = 1 << logM;
|
2022-07-26 08:06:56 -04:00
|
|
|
(M <= MAX_M) && (M < outputs)
|
2022-07-26 02:05:15 -05:00
|
|
|
} {
|
|
|
|
|
logM += 1;
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-26 08:06:56 -04:00
|
|
|
(logM + logN, M, M * N)
|
|
|
|
|
}
|
2022-07-26 02:05:15 -05:00
|
|
|
|
2022-07-26 08:06:56 -04:00
|
|
|
fn bit_decompose(commitments: &[Commitment]) -> (ScalarVector, ScalarVector) {
|
|
|
|
|
let (_, M, MN) = MN(commitments.len());
|
|
|
|
|
|
2022-07-27 04:05:43 -05:00
|
|
|
let sv = commitments.iter().map(|c| Scalar::from(c.amount)).collect::<Vec<_>>();
|
2022-07-26 02:05:15 -05:00
|
|
|
let mut aL = ScalarVector::new(MN);
|
|
|
|
|
let mut aR = ScalarVector::new(MN);
|
|
|
|
|
|
|
|
|
|
for j in 0 .. M {
|
|
|
|
|
for i in (0 .. N).rev() {
|
|
|
|
|
if (j < sv.len()) && ((sv[j][i / 8] & (1u8 << (i % 8))) != 0) {
|
|
|
|
|
aL.0[(j * N) + i] = Scalar::one();
|
|
|
|
|
} else {
|
|
|
|
|
aR.0[(j * N) + i] = -Scalar::one();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-26 08:06:56 -04:00
|
|
|
(aL, aR)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn hash_commitments(commitments: &[Commitment]) -> Scalar {
|
2022-07-26 02:05:15 -05:00
|
|
|
let V = commitments.iter().map(|c| EdwardsPoint(c.calculate()) * *INV_EIGHT).collect::<Vec<_>>();
|
2022-07-26 08:06:56 -04:00
|
|
|
hash_to_scalar(&V.iter().flat_map(|V| V.compress().to_bytes()).collect::<Vec<_>>())
|
|
|
|
|
}
|
2022-07-26 02:05:15 -05:00
|
|
|
|
2022-07-27 04:05:43 -05:00
|
|
|
fn alpha_rho<R: RngCore + CryptoRng>(
|
2022-07-26 08:06:56 -04:00
|
|
|
rng: &mut R,
|
|
|
|
|
generators: &Generators,
|
|
|
|
|
aL: &ScalarVector,
|
|
|
|
|
aR: &ScalarVector,
|
|
|
|
|
) -> (Scalar, EdwardsPoint) {
|
2022-07-27 04:05:43 -05:00
|
|
|
let ar = Scalar::random(rng);
|
|
|
|
|
(ar, (vector_exponent(generators, aL, aR) + (EdwardsPoint::generator() * ar)) * *INV_EIGHT)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn LR_statements(
|
|
|
|
|
a: &ScalarVector,
|
|
|
|
|
G_i: &[EdwardsPoint],
|
|
|
|
|
b: &ScalarVector,
|
|
|
|
|
H_i: &[EdwardsPoint],
|
|
|
|
|
cL: Scalar,
|
|
|
|
|
U: EdwardsPoint,
|
|
|
|
|
) -> Vec<(Scalar, EdwardsPoint)> {
|
|
|
|
|
let mut res = a
|
|
|
|
|
.0
|
|
|
|
|
.iter()
|
|
|
|
|
.cloned()
|
|
|
|
|
.zip(G_i.iter().cloned())
|
|
|
|
|
.chain(b.0.iter().cloned().zip(H_i.iter().cloned()))
|
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
|
res.push((cL, U));
|
|
|
|
|
res
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
lazy_static! {
|
|
|
|
|
static ref TWO_N: ScalarVector = ScalarVector::powers(Scalar::from(2u8), N);
|
2022-07-26 08:06:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Bulletproofs-specific
|
|
|
|
|
lazy_static! {
|
|
|
|
|
static ref GENERATORS: Generators = generators_core(b"bulletproof");
|
2022-07-27 04:05:43 -05:00
|
|
|
static ref ONE_N: ScalarVector = ScalarVector(vec![Scalar::one(); N]);
|
|
|
|
|
static ref IP12: Scalar = inner_product(&ONE_N, &TWO_N);
|
2022-07-26 08:06:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Bulletproofs+-specific
|
|
|
|
|
lazy_static! {
|
|
|
|
|
static ref GENERATORS_PLUS: Generators = generators_core(b"bulletproof_plus");
|
2022-07-27 04:05:43 -05:00
|
|
|
static ref TRANSCRIPT_PLUS: [u8; 32] =
|
|
|
|
|
EdwardsPoint(raw_hash_to_point(hash(b"bulletproof_plus_transcript"))).compress().to_bytes();
|
2022-07-26 08:06:56 -04:00
|
|
|
}
|
|
|
|
|
|
2022-07-27 04:05:43 -05:00
|
|
|
// TRANSCRIPT_PLUS isn't a Scalar, so we need this alternative for the first hash
|
|
|
|
|
fn hash_plus(mash: &[[u8; 32]]) -> Scalar {
|
|
|
|
|
let slice =
|
|
|
|
|
&[&*TRANSCRIPT_PLUS as &[u8], mash.iter().cloned().flatten().collect::<Vec<_>>().as_ref()]
|
|
|
|
|
.concat();
|
|
|
|
|
hash_to_scalar(slice)
|
2022-07-26 08:06:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Types for all Bulletproofs
|
2022-07-27 04:05:43 -05:00
|
|
|
#[allow(clippy::large_enum_variant)]
|
2022-07-26 08:06:56 -04:00
|
|
|
#[derive(Clone, PartialEq, Eq, Debug)]
|
|
|
|
|
pub enum Bulletproofs {
|
|
|
|
|
Original {
|
|
|
|
|
A: DalekPoint,
|
|
|
|
|
S: DalekPoint,
|
|
|
|
|
T1: DalekPoint,
|
|
|
|
|
T2: DalekPoint,
|
|
|
|
|
taux: DalekScalar,
|
|
|
|
|
mu: DalekScalar,
|
|
|
|
|
L: Vec<DalekPoint>,
|
|
|
|
|
R: Vec<DalekPoint>,
|
|
|
|
|
a: DalekScalar,
|
|
|
|
|
b: DalekScalar,
|
|
|
|
|
t: DalekScalar,
|
|
|
|
|
},
|
2022-07-27 04:05:43 -05:00
|
|
|
|
|
|
|
|
Plus {
|
|
|
|
|
A: DalekPoint,
|
|
|
|
|
A1: DalekPoint,
|
|
|
|
|
B: DalekPoint,
|
|
|
|
|
r1: DalekScalar,
|
|
|
|
|
s1: DalekScalar,
|
|
|
|
|
d1: DalekScalar,
|
|
|
|
|
L: Vec<DalekPoint>,
|
|
|
|
|
R: Vec<DalekPoint>,
|
|
|
|
|
},
|
2022-07-26 08:06:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub(crate) fn prove<R: RngCore + CryptoRng>(
|
|
|
|
|
rng: &mut R,
|
|
|
|
|
commitments: &[Commitment],
|
|
|
|
|
) -> Bulletproofs {
|
|
|
|
|
let (logMN, M, MN) = MN(commitments.len());
|
|
|
|
|
|
|
|
|
|
let (aL, aR) = bit_decompose(commitments);
|
|
|
|
|
let mut cache = hash_commitments(commitments);
|
2022-07-27 04:05:43 -05:00
|
|
|
let (alpha, A) = alpha_rho(&mut *rng, &GENERATORS, &aL, &aR);
|
2022-07-26 02:05:15 -05:00
|
|
|
|
|
|
|
|
let (sL, sR) =
|
2022-07-27 04:05:43 -05:00
|
|
|
ScalarVector((0 .. (MN * 2)).map(|_| Scalar::random(&mut *rng)).collect::<Vec<_>>()).split();
|
|
|
|
|
let (rho, S) = alpha_rho(&mut *rng, &GENERATORS, &sL, &sR);
|
2022-07-26 02:05:15 -05:00
|
|
|
|
|
|
|
|
let y = hash_cache(&mut cache, &[A.compress().to_bytes(), S.compress().to_bytes()]);
|
|
|
|
|
let mut cache = hash_to_scalar(&y.to_bytes());
|
|
|
|
|
let z = cache;
|
|
|
|
|
|
|
|
|
|
let l0 = &aL - z;
|
|
|
|
|
let l1 = sL;
|
|
|
|
|
|
|
|
|
|
let mut zero_twos = Vec::with_capacity(MN);
|
|
|
|
|
let zpow = ScalarVector::powers(z, M + 2);
|
|
|
|
|
for j in 0 .. M {
|
|
|
|
|
for i in 0 .. N {
|
|
|
|
|
zero_twos.push(zpow[j + 2] * TWO_N[i]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let yMN = ScalarVector::powers(y, MN);
|
|
|
|
|
let r0 = (&(aR + z) * &yMN) + ScalarVector(zero_twos);
|
|
|
|
|
let r1 = yMN * sR;
|
|
|
|
|
|
|
|
|
|
let t1 = inner_product(&l0, &r1) + inner_product(&l1, &r0);
|
|
|
|
|
let t2 = inner_product(&l1, &r1);
|
|
|
|
|
|
2022-07-27 04:05:43 -05:00
|
|
|
let tau1 = Scalar::random(&mut *rng);
|
|
|
|
|
let tau2 = Scalar::random(rng);
|
2022-07-26 02:05:15 -05:00
|
|
|
|
2022-07-27 04:05:43 -05:00
|
|
|
let T1 = prove_multiexp(&[(t1, *H), (tau1, EdwardsPoint::generator())]);
|
|
|
|
|
let T2 = prove_multiexp(&[(t2, *H), (tau2, EdwardsPoint::generator())]);
|
2022-07-26 02:05:15 -05:00
|
|
|
|
|
|
|
|
let x =
|
|
|
|
|
hash_cache(&mut cache, &[z.to_bytes(), T1.compress().to_bytes(), T2.compress().to_bytes()]);
|
|
|
|
|
|
|
|
|
|
let mut taux = (tau2 * (x * x)) + (tau1 * x);
|
2022-07-27 04:05:43 -05:00
|
|
|
for (i, gamma) in commitments.iter().map(|c| Scalar(c.mask)).enumerate() {
|
|
|
|
|
taux += zpow[i + 2] * gamma;
|
2022-07-26 02:05:15 -05:00
|
|
|
}
|
|
|
|
|
let mu = (x * rho) + alpha;
|
|
|
|
|
|
|
|
|
|
let l = &l0 + &(l1 * x);
|
|
|
|
|
let r = &r0 + &(r1 * x);
|
|
|
|
|
|
|
|
|
|
let t = inner_product(&l, &r);
|
|
|
|
|
|
|
|
|
|
let x_ip = hash_cache(&mut cache, &[x.to_bytes(), taux.to_bytes(), mu.to_bytes(), t.to_bytes()]);
|
|
|
|
|
|
|
|
|
|
let mut a = l;
|
|
|
|
|
let mut b = r;
|
|
|
|
|
|
|
|
|
|
let yinv = y.invert().unwrap();
|
|
|
|
|
let yinvpow = ScalarVector::powers(yinv, MN);
|
|
|
|
|
|
2022-07-26 08:06:56 -04:00
|
|
|
let mut G_proof = GENERATORS.G[.. a.len()].to_vec();
|
|
|
|
|
let mut H_proof = GENERATORS.H[.. a.len()].to_vec();
|
2022-07-26 02:05:15 -05:00
|
|
|
H_proof.iter_mut().zip(yinvpow.0.iter()).for_each(|(this_H, yinvpow)| *this_H *= yinvpow);
|
|
|
|
|
let U = *H * x_ip;
|
|
|
|
|
|
|
|
|
|
let mut L = Vec::with_capacity(logMN);
|
|
|
|
|
let mut R = Vec::with_capacity(logMN);
|
|
|
|
|
|
|
|
|
|
while a.len() != 1 {
|
|
|
|
|
let (aL, aR) = a.split();
|
|
|
|
|
let (bL, bR) = b.split();
|
|
|
|
|
|
|
|
|
|
let cL = inner_product(&aL, &bR);
|
|
|
|
|
let cR = inner_product(&aR, &bL);
|
|
|
|
|
|
|
|
|
|
let (G_L, G_R) = G_proof.split_at(aL.len());
|
|
|
|
|
let (H_L, H_R) = H_proof.split_at(aL.len());
|
|
|
|
|
|
2022-07-27 04:05:43 -05:00
|
|
|
let L_i = prove_multiexp(&LR_statements(&aL, G_R, &bR, H_L, cL, U));
|
|
|
|
|
let R_i = prove_multiexp(&LR_statements(&aR, G_L, &bL, H_R, cR, U));
|
2022-07-26 02:05:15 -05:00
|
|
|
L.push(L_i);
|
|
|
|
|
R.push(R_i);
|
|
|
|
|
|
|
|
|
|
let w = hash_cache(&mut cache, &[L_i.compress().to_bytes(), R_i.compress().to_bytes()]);
|
|
|
|
|
let winv = w.invert().unwrap();
|
|
|
|
|
|
|
|
|
|
a = (aL * w) + (aR * winv);
|
|
|
|
|
b = (bL * winv) + (bR * w);
|
|
|
|
|
|
|
|
|
|
if a.len() != 1 {
|
|
|
|
|
G_proof = hadamard_fold(G_L, G_R, winv, w);
|
|
|
|
|
H_proof = hadamard_fold(H_L, H_R, w, winv);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-26 08:06:56 -04:00
|
|
|
Bulletproofs::Original {
|
2022-07-26 02:05:15 -05:00
|
|
|
A: *A,
|
|
|
|
|
S: *S,
|
|
|
|
|
T1: *T1,
|
|
|
|
|
T2: *T2,
|
|
|
|
|
taux: *taux,
|
|
|
|
|
mu: *mu,
|
|
|
|
|
L: L.drain(..).map(|L| *L).collect(),
|
|
|
|
|
R: R.drain(..).map(|R| *R).collect(),
|
|
|
|
|
a: *a[0],
|
|
|
|
|
b: *b[0],
|
|
|
|
|
t: *t,
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-07-27 04:05:43 -05:00
|
|
|
|
|
|
|
|
pub(crate) fn prove_plus<R: RngCore + CryptoRng>(
|
|
|
|
|
rng: &mut R,
|
|
|
|
|
commitments: &[Commitment],
|
|
|
|
|
) -> Bulletproofs {
|
|
|
|
|
let (logMN, M, MN) = MN(commitments.len());
|
|
|
|
|
|
|
|
|
|
let (aL, aR) = bit_decompose(commitments);
|
|
|
|
|
let mut cache = hash_plus(&[hash_commitments(commitments).to_bytes()]);
|
|
|
|
|
let (mut alpha1, A) = alpha_rho(&mut *rng, &GENERATORS_PLUS, &aL, &aR);
|
|
|
|
|
|
|
|
|
|
let y = hash_cache(&mut cache, &[A.compress().to_bytes()]);
|
|
|
|
|
let mut cache = hash_to_scalar(&y.to_bytes());
|
|
|
|
|
let z = cache;
|
|
|
|
|
|
|
|
|
|
let zpow = ScalarVector::even_powers(z, 2 * M);
|
|
|
|
|
// d[j*N+i] = z**(2*(j+1)) * 2**i
|
|
|
|
|
let mut d = vec![Scalar::zero(); MN];
|
|
|
|
|
for j in 0 .. M {
|
|
|
|
|
for i in 0 .. N {
|
|
|
|
|
d[(j * N) + i] = zpow[j] * TWO_N[i];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let aL1 = aL - z;
|
|
|
|
|
|
|
|
|
|
let ypow = ScalarVector::powers(y, MN + 2);
|
|
|
|
|
let mut y_for_d = ScalarVector(ypow.0[1 ..= MN].to_vec());
|
|
|
|
|
y_for_d.0.reverse();
|
|
|
|
|
let aR1 = (aR + z) + (y_for_d * ScalarVector(d));
|
|
|
|
|
|
|
|
|
|
for (j, gamma) in commitments.iter().map(|c| Scalar(c.mask)).enumerate() {
|
|
|
|
|
alpha1 += zpow[j] * ypow[MN + 1] * gamma;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let mut a = aL1;
|
|
|
|
|
let mut b = aR1;
|
|
|
|
|
|
|
|
|
|
let yinv = y.invert().unwrap();
|
|
|
|
|
let yinvpow = ScalarVector::powers(yinv, MN);
|
|
|
|
|
|
|
|
|
|
let mut G_proof = GENERATORS_PLUS.G[.. a.len()].to_vec();
|
|
|
|
|
let mut H_proof = GENERATORS_PLUS.H[.. a.len()].to_vec();
|
|
|
|
|
|
|
|
|
|
let mut L = Vec::with_capacity(logMN);
|
|
|
|
|
let mut R = Vec::with_capacity(logMN);
|
|
|
|
|
|
|
|
|
|
while a.len() != 1 {
|
|
|
|
|
let (aL, aR) = a.split();
|
|
|
|
|
let (bL, bR) = b.split();
|
|
|
|
|
|
|
|
|
|
let cL = weighted_inner_product(&aL, &bR, y);
|
|
|
|
|
let cR = weighted_inner_product(&(&aR * ypow[aR.len()]), &bL, y);
|
|
|
|
|
|
|
|
|
|
let (dL, dR) = (Scalar::random(&mut *rng), Scalar::random(&mut *rng));
|
|
|
|
|
|
|
|
|
|
let (G_L, G_R) = G_proof.split_at(aL.len());
|
|
|
|
|
let (H_L, H_R) = H_proof.split_at(aL.len());
|
|
|
|
|
|
|
|
|
|
let mut L_i = LR_statements(&(&aL * yinvpow[aL.len()]), G_R, &bR, H_L, cL, *H);
|
|
|
|
|
L_i.push((dL, ED25519_BASEPOINT_POINT));
|
|
|
|
|
let L_i = prove_multiexp(&L_i);
|
|
|
|
|
L.push(L_i);
|
|
|
|
|
|
|
|
|
|
let mut R_i = LR_statements(&(&aR * ypow[aR.len()]), G_L, &bL, H_R, cR, *H);
|
|
|
|
|
R_i.push((dR, ED25519_BASEPOINT_POINT));
|
|
|
|
|
let R_i = prove_multiexp(&R_i);
|
|
|
|
|
R.push(R_i);
|
|
|
|
|
|
|
|
|
|
let w = hash_cache(&mut cache, &[L_i.compress().to_bytes(), R_i.compress().to_bytes()]);
|
|
|
|
|
let winv = w.invert().unwrap();
|
|
|
|
|
|
|
|
|
|
G_proof = hadamard_fold(G_L, G_R, winv, w * yinvpow[aL.len()]);
|
|
|
|
|
H_proof = hadamard_fold(H_L, H_R, w, winv);
|
|
|
|
|
|
|
|
|
|
a = (&aL * w) + (aR * (winv * ypow[aL.len()]));
|
|
|
|
|
b = (bL * winv) + (bR * w);
|
|
|
|
|
|
|
|
|
|
alpha1 += (dL * (w * w)) + (dR * (winv * winv));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let r = Scalar::random(&mut *rng);
|
|
|
|
|
let s = Scalar::random(&mut *rng);
|
|
|
|
|
let d = Scalar::random(&mut *rng);
|
|
|
|
|
let eta = Scalar::random(rng);
|
|
|
|
|
|
|
|
|
|
let A1 = prove_multiexp(&[
|
|
|
|
|
(r, G_proof[0]),
|
|
|
|
|
(s, H_proof[0]),
|
|
|
|
|
(d, ED25519_BASEPOINT_POINT),
|
|
|
|
|
((r * y * b[0]) + (s * y * a[0]), *H),
|
|
|
|
|
]);
|
|
|
|
|
let B = prove_multiexp(&[(r * y * s, *H), (eta, ED25519_BASEPOINT_POINT)]);
|
|
|
|
|
let e = hash_cache(&mut cache, &[A1.compress().to_bytes(), B.compress().to_bytes()]);
|
|
|
|
|
|
|
|
|
|
let r1 = (a[0] * e) + r;
|
|
|
|
|
let s1 = (b[0] * e) + s;
|
|
|
|
|
let d1 = ((d * e) + eta) + (alpha1 * (e * e));
|
|
|
|
|
|
|
|
|
|
Bulletproofs::Plus {
|
|
|
|
|
A: *A,
|
|
|
|
|
A1: *A1,
|
|
|
|
|
B: *B,
|
|
|
|
|
r1: *r1,
|
|
|
|
|
s1: *s1,
|
|
|
|
|
d1: *d1,
|
|
|
|
|
L: L.drain(..).map(|L| *L).collect(),
|
|
|
|
|
R: R.drain(..).map(|R| *R).collect(),
|
|
|
|
|
}
|
|
|
|
|
}
|