UNPKG

micro-zk-proofs

Version:

Create & verify zero-knowledge SNARK proofs in parallel, using noble cryptography

387 lines 17.7 kB
/*! micro-zk-proofs - MIT License (c) 2025 Paul Miller (paulmillr.com) */ import { bn254 as nobleBn254 } from '@noble/curves/bn254'; // import { bls12_381 as nobleBls12 } from '@noble/curves/bls12-381'; import {} from '@noble/curves/abstract/bls'; import { bytesToNumberBE } from '@noble/curves/abstract/utils'; import { randomBytes } from '@noble/hashes/utils'; import { modifyArgs } from "./msm.js"; function log2(n) { if (!Number.isSafeInteger(n) || n <= 0) throw new Error('Input must be a safe positive integer'); return 31 - Math.clz32(n); } // Basic utility to deep convert bigints to strings and back function deepConvert(o, mapper) { const t = mapper(o); if (t !== undefined) return t; if (o === null) return o; if (Array.isArray(o)) return o.map((i) => deepConvert(i, mapper)); if (typeof o == 'object') { return Object.fromEntries(Object.entries(o).map(([k, v]) => [k, deepConvert(v, mapper)])); } return o; } export const stringBigints = { encode(o) { return deepConvert(o, (o) => typeof o === 'bigint' ? o.toString(10) : undefined); }, decode(o) { return deepConvert(o, (o) => typeof o == 'string' && /^[0-9]+$/.test(o) ? BigInt(o) : undefined); }, }; function pointCoder(cons, coder) { return { encode: (p) => { const { px, py, pz } = cons.fromAffine(p.toAffine()); return [px, py, pz].map(coder.encode); }, decode: (p) => { if (!p) return cons.ZERO; // sometimes can be null? const [x, y, z] = p.map(coder.decode); // TODO: validation increases time 3x // res.assertValidity(); return new cons(x, y, z); }, }; } export function buildSnark(curve, opts = {}) { // Utils const G1 = curve.G1.ProjectivePoint; const G2 = curve.G2.ProjectivePoint; const { Fr, Fp, Fp2, Fp12 } = curve.fields; const Fpc = { encode: (from) => from, decode: (to) => Fp.create(to), }; const Fp2c = { encode: (from) => [from.c0, from.c1], decode: (to) => Fp2.create({ c0: Fp.create(to[0]), c1: Fp.create(to[1]) }), }; const G1c = pointCoder(G1, Fpc); const G2c = pointCoder(G2, Fp2c); const G1msm = !opts.G1msm ? G1.msm : modifyArgs(Fr, G1, opts.G1msm); const G2msm = !opts.G2msm ? G2.msm : modifyArgs(Fr, G2, opts.G2msm); const Frandom = (rnd = randomBytes) => { return bytesToNumberBE(rnd(Fr.BYTES)); }; // Factor Fr.ORDER-1 as oddFactor * 2^powerOfTwo let oddFactor = Fr.ORDER - BigInt(1); let powerOfTwo = 0; for (; (oddFactor & BigInt(1)) !== BigInt(1); powerOfTwo++, oddFactor >>= 1n) ; // Find non quadratic residue let NQR; if (opts.nqr) NQR = BigInt(opts.nqr); else for (NQR = 2n; Fr.eql(Fr.pow(NQR, Fr.ORDER >> 1n), Fr.ONE); NQR++) ; // Primitive roots of unity const rootsOfUnity = [Fr.pow(NQR, oddFactor)]; for (let i = 0; i < powerOfTwo; i++) rootsOfUnity.push(Fr.sqr(rootsOfUnity[i])); rootsOfUnity.reverse(); // Compute all roots of unity for powers up to maxPower const rootsCache = []; const precomputeRoots = (maxPower) => { for (let power = maxPower; power >= 0; power--) { if (rootsCache[power]) continue; // Skip if we've already computed roots for this power const rootsAtPower = (rootsCache[power] = []); for (let j = 0, cur = Fr.ONE; j < 1 << power; j++, cur = Fr.mul(cur, rootsOfUnity[power])) rootsAtPower.push(cur); } }; const poly = { reduce(p) { while (p.length > 0 && Fr.is0(p[p.length - 1])) p.pop(); return p; }, sub(a, b) { const res = []; for (let i = 0; i < Math.max(a.length, b.length); i++) res.push(Fr.sub(a[i] || Fr.ZERO, b[i] || Fr.ZERO)); return poly.reduce(res); }, // Iterative Cooley-Tukey FFT fft(p, bits) { const n = 1 << bits; while (p.length < n) p.push(Fr.ZERO); const out = new Array(n); // Bit-reversal permutation: reorder input array into 'out' for (let i = 0; i < n; i++) { let rev = 0; for (let j = 0; j < bits; j++) rev = (rev << 1) | ((i >> j) & 1); out[rev] = p[i]; } // For each stage s (sub-FFT length m = 2^s) for (let s = 1; s <= bits; s++) { const m = 1 << s; const m2 = m >> 1; // Loop over each subarray of length m for (let k = 0; k < n; k += m) { // Loop over each butterfly within the subarray for (let j = 0; j < m2; j++) { // Multiply the lower half by the appropriate twiddle factor. const t = Fr.mul(rootsCache[s][j], out[k + j + m2]); const u = out[k + j]; // Combine to form the butterfly outputs. out[k + j] = Fr.add(u, t); out[k + j + m2] = Fr.sub(u, t); } } } return out; }, // Inverse FFT. ifft(p) { if (p.length <= 1) return p; const bits = log2(p.length - 1) + 1; precomputeRoots(bits); const invm = Fr.inv(Fr.create(BigInt(1 << bits))); const res = poly.fft(p, bits); for (let i = 0; i < res.length; i++) res[i] = Fr.mul(res[i], invm); return [res[0]].concat(res.slice(1).reverse()); }, // Polynomial multiplication via FFT. mul(a, b) { if (a.length !== b.length || a.length < 2) throw new Error('wrong polynominal length'); // We compute bits = log2(longestN - 1) + 2 to ensure enough room for convolution, // since the product of two degree-(n-1) polynomials can have degree up to 2n-2. const bits = log2(Math.max(a.length, b.length) - 1) + 2; precomputeRoots(bits); const a2 = poly.fft(a, bits); const b2 = poly.fft(b, bits); for (let i = 0; i < a2.length; i++) a2[i] = Fr.mul(a2[i], b2[i]); return poly.reduce(poly.ifft(a2)); }, // Evaluate the Lagrange basis polynomials at a point t over the FFT domain of size m = 2^bits. // If t is one of the m-th roots of unity, returns the Kronecker delta vector. // Otherwise, computes L_i(t) = ((t^m - 1)/m) * (ω_i/(t - ω_i)), // where ω_i = rootsCache[bits][i] (the i-th m-th root of unity). evaluateLagrangePolynomials(bits, t) { const m = 1 << bits; const tm = Fr.pow(t, BigInt(m)); const u = new Array(m).fill(Fr.ZERO); precomputeRoots(bits); // Special case: if t is one of the roots of unity, the Lagrange basis is a Kronecker delta. for (let i = 0; i < m; i++) { if (Fr.eql(t, rootsCache[bits][i])) { u.fill(Fr.ZERO); u[i] = Fr.ONE; return u; } } const omega = rootsOfUnity[bits]; let l = Fr.mul(Fr.sub(tm, Fr.ONE), Fr.inv(BigInt(m))); for (let i = 0; i < m; i++) { u[i] = Fr.mul(l, Fr.inv(Fr.sub(t, rootsCache[bits][i]))); l = Fr.mul(l, omega); } return u; }, sumABC(size, weights, A, B, C, transpose = false) { function build(constraints) { const res = new Array(size).fill(Fr.ZERO); for (let s = 0; s < weights.length; s++) { for (let c in constraints[s]) { const idx = transpose ? s : +c; res[idx] = Fr.add(res[idx], Fr.mul(transpose ? weights[+c] : weights[s], constraints[s][c])); } } return res; } return { pA: build(A), pB: build(B), pC: build(C) }; }, }; function calculateH(proof, witness) { const m = proof.domainSize; const { pA, pB, pC } = poly.sumABC(m, witness, proof.polsA, proof.polsB, proof.polsC); // FFT only needed to optimize multiplication O(n²) to O(n log n) // pA * pB - pC return poly.sub(poly.mul(poly.ifft(pA), poly.ifft(pB)), poly.ifft(pC)).slice(m); } const utils = { G1, G2, G1c, G2c }; // TODO: add other proofs, which re-use many polynomial operations // * We don't export alfabeta_12! It is only used for optimization, and is specific to // pairing implementation (different values after final exponentiation). // * We accept raw circuit json here, no need for Circuit object! return { utils: utils, groth: { setup(circuit, rnd = randomBytes) { // Sizes const nConstraints = circuit.constraints.length; const domainBits = log2(nConstraints + circuit.nPubInputs + circuit.nOutputs + 1 - 1) + 1; const domainSize = 1 << domainBits; const nPublic = circuit.nPubInputs + circuit.nOutputs; const maxH = domainSize + 1; // Toxic const toxic = { t: Frandom(rnd), kalfa: Frandom(rnd), kbeta: Frandom(rnd), kgamma: Frandom(rnd), kdelta: Frandom(rnd), }; // G1 const alfaP1 = G1c.encode(G1.BASE.multiplyUnsafe(Fr.create(toxic.kalfa))); const betaP1 = G1c.encode(G1.BASE.multiplyUnsafe(Fr.create(toxic.kbeta))); const deltaP1 = G1c.encode(G1.BASE.multiplyUnsafe(Fr.create(toxic.kdelta))); // G2 const betaP2 = G2c.encode(G2.BASE.multiplyUnsafe(Fr.create(toxic.kbeta))); const deltaP2 = G2c.encode(G2.BASE.multiplyUnsafe(Fr.create(toxic.kdelta))); const gammaP2 = G2c.encode(G2.BASE.multiplyUnsafe(Fr.create(toxic.kgamma))); // Pols const pols = [0, 1, 2].map((side) => Array.from({ length: circuit.nVars }, (_, s) => Object.fromEntries(circuit.constraints .map((constraint, c) => [c, constraint[side]?.[s]]) .filter(([, v]) => v !== undefined) .map(([c, v]) => [c, BigInt(v)])))); const [polsA, polsB, polsC] = pols; for (let i = 0; i < circuit.nPubInputs + circuit.nOutputs + 1; i++) polsA[i][nConstraints + i] = Fr.ONE; // Evaluate const zt = Fr.sub(Fr.pow(toxic.t, BigInt(1 << domainBits)), Fr.ONE); const u = poly.evaluateLagrangePolynomials(domainBits, toxic.t); const { pA, pB, pC } = poly.sumABC(circuit.nVars, u, polsA, polsB, polsC, true); // C const C = new Array(circuit.nVars); const invDelta = Fr.inv(toxic.kdelta); for (let s = nPublic + 1; s < circuit.nVars; s++) { C[s] = G1c.encode(G1.BASE.multiplyUnsafe(Fr.mul(invDelta, Fr.add(Fr.add(Fr.mul(pA[s], toxic.kbeta), Fr.mul(pB[s], toxic.kalfa)), pC[s])))); } // IC const IC = []; const invGamma = Fr.inv(toxic.kgamma); for (let s = 0; s <= nPublic; s++) { IC.push(G1c.encode(G1.BASE.multiplyUnsafe(Fr.mul(invGamma, Fr.add(Fr.add(Fr.mul(pA[s], toxic.kbeta), Fr.mul(pB[s], toxic.kalfa)), pC[s]))))); } // hExps const zod = Fr.mul(invDelta, zt); const hExps = [G1c.encode(G1.BASE.multiplyUnsafe(zod))]; for (let i = 1, eT = toxic.t; i < maxH; i++, eT = Fr.mul(eT, toxic.t)) hExps.push(G1c.encode(G1.BASE.multiplyUnsafe(Fr.mul(eT, zod)))); const pkey = { protocol: 'groth', nVars: circuit.nVars, nPublic, domainBits, domainSize, // Polynominals polsA, polsB, polsC, // A: Array.from({ length: circuit.nVars }, (_, j) => G1.BASE.multiplyUnsafe(pA[j])).map(G1c.encode), B1: Array.from({ length: circuit.nVars }, (_, j) => G1.BASE.multiplyUnsafe(pB[j])).map(G1c.encode), B2: Array.from({ length: circuit.nVars }, (_, j) => G2.BASE.multiplyUnsafe(pB[j])).map(G2c.encode), C, // vk_alfa_1: alfaP1, vk_beta_1: betaP1, vk_delta_1: deltaP1, vk_beta_2: betaP2, vk_delta_2: deltaP2, // hExps, }; const vkey = { protocol: 'groth', nPublic: circuit.nPubInputs + circuit.nOutputs, IC, // vk_alfa_1: alfaP1, vk_beta_2: betaP2, vk_gamma_2: gammaP2, vk_delta_2: deltaP2, }; return { pkey, vkey, toxic: opts.unsafePreserveToxic ? toxic : undefined, }; }, async createProof(pkey, witness, rnd = randomBytes) { witness = witness.map(Fr.create); // Blinding salt for zero-knowledge const r = Fr.create(Frandom(rnd)); const s = Fr.create(Frandom(rnd)); const A = pkey.A.map(G1c.decode); const B1 = pkey.B1.map(G1c.decode); const B2 = pkey.B2.map(G2c.decode); const C = pkey.C.map(G1c.decode); const hExps = pkey.hExps.map(G1c.decode); const vk_alfa_1 = G1c.decode(pkey.vk_alfa_1); const vk_beta_1 = G1c.decode(pkey.vk_beta_1); const vk_beta_2 = G2c.decode(pkey.vk_beta_2); const vk_delta_1 = G1c.decode(pkey.vk_delta_1); const vk_delta_2 = G2c.decode(pkey.vk_delta_2); // Actual algorithm // pi_a = WITNESS_A + delta1*r const pi_a_msm = await G1msm(A, witness); const pi_a = pi_a_msm.add(vk_alfa_1).add(vk_delta_1.multiplyUnsafe(r)); // pi_b = WITNESS_B + delta2*s const pi_b_msm = await G2msm(B2, witness); const pi_b = pi_b_msm.add(vk_beta_2).add(vk_delta_2.multiplyUnsafe(s)); const pib1n_msm = await G1msm(B1, witness); const pib1n = pib1n_msm.add(vk_beta_1).add(vk_delta_1.multiplyUnsafe(s)); const cOffset = pkey.nPublic + 1; const h = calculateH(pkey, witness).map(Fr.create); //WITNESS3 + pi_a * s + WITNESS4 * r const pi_c_msm = await G1msm(C.slice(cOffset).concat(hExps.slice(0, h.length)), witness.slice(cOffset).concat(h)); const pi_c = pi_c_msm .add(pi_a.multiplyUnsafe(s)) .add(pib1n.multiplyUnsafe(r)) .add(vk_delta_1.multiplyUnsafe(Fr.create(Fr.neg(Fr.mul(r, s))))); return { proof: { protocol: 'groth', pi_a: G1c.encode(pi_a), pi_b: G2c.encode(pi_b), pi_c: G1c.encode(pi_c), }, publicSignals: witness.slice(1, pkey.nPublic + 1), }; }, verifyProof(vkey, proofWithSignals) { const { proof, publicSignals } = proofWithSignals; const cpub = G1.msm(vkey.IC.map(G1c.decode), [1n, ...publicSignals]); // old e(pi_a, pi_b) = alfa_beta * e(cpub, gamma_2) * e(pi_c, delta_2) // new: e(-pi_a, pi_b) * e(cpub, gamma_2) * e(pi_c, delta_2) * e(alfa_1, beta_2) = 1 // Major difference: old version uses pre-computed alfa_beta, // but this makes it incompatible with noble, because we use cyclomatic exp // (Fp12 values different even if math is same). const newRes = curve.pairingBatch([ { g1: G1c.decode(proof.pi_a).negate(), g2: G2c.decode(proof.pi_b) }, { g1: cpub, g2: G2c.decode(vkey.vk_gamma_2) }, { g1: G1c.decode(proof.pi_c), g2: G2c.decode(vkey.vk_delta_2) }, { g1: G1c.decode(vkey.vk_alfa_1), g2: G2c.decode(vkey.vk_beta_2) }, ]); return Fp12.eql(newRes, Fp12.ONE); }, }, }; } /** * ZK Snarks over bn254 (aka bn128) curve. * @example * ```js * const proof = await zkp.bn254.groth.createProof(provingKey, witness); * const isValid = zkp.bn254.groth.verifyProof(verificationKey, proof); * ``` */ export const bn254 = buildSnark(nobleBn254, {}); // NOTE: this is unsafe and may not work (untested for now) //export const bls12_381 = buildSnark(nobleBls12, {}); //# sourceMappingURL=index.js.map