circomlib/test/pedersen.js

78 lines
2.7 KiB
JavaScript
Raw Normal View History

2018-11-13 12:57:54 +03:00
const chai = require("chai");
const path = require("path");
2019-12-13 20:35:29 +03:00
const bigInt = require("big-integer");
const tester = require("circom").tester;
2018-11-13 12:57:54 +03:00
const babyJub = require("../src/babyjub.js");
const PBASE =
[
2018-12-16 10:05:20 +03:00
[bigInt("10457101036533406547632367118273992217979173478358440826365724437999023779287"),bigInt("19824078218392094440610104313265183977899662750282163392862422243483260492317")],
[bigInt("2671756056509184035029146175565761955751135805354291559563293617232983272177"),bigInt("2663205510731142763556352975002641716101654201788071096152948830924149045094")],
[bigInt("5802099305472655231388284418920769829666717045250560929368476121199858275951"),bigInt("5980429700218124965372158798884772646841287887664001482443826541541529227896")],
[bigInt("7107336197374528537877327281242680114152313102022415488494307685842428166594"),bigInt("2857869773864086953506483169737724679646433914307247183624878062391496185654")],
[bigInt("20265828622013100949498132415626198973119240347465898028410217039057588424236"),bigInt("1160461593266035632937973507065134938065359936056410650153315956301179689506")]
2018-11-13 12:57:54 +03:00
];
describe("Double Pedersen test", function() {
let circuit;
this.timeout(100000);
before( async() => {
2019-12-13 20:35:29 +03:00
circuit = await tester(path.join(__dirname, "circuits", "pedersen_test.circom"));
2018-11-13 12:57:54 +03:00
});
it("Should pedersen at zero", async () => {
2019-12-13 20:35:29 +03:00
let w;
2018-11-13 12:57:54 +03:00
2020-03-26 21:24:20 +03:00
w = await circuit.calculateWitness({ in: ["0", "0"]}, true);
2018-11-13 12:57:54 +03:00
2019-12-13 20:35:29 +03:00
await circuit.assertOut(w, {out: [0,1]});
2018-11-13 12:57:54 +03:00
});
it("Should pedersen at one first generator", async () => {
2019-12-13 20:35:29 +03:00
let w;
2018-11-13 12:57:54 +03:00
2020-03-26 21:24:20 +03:00
w = await circuit.calculateWitness({ in: ["1", "0"]}, true);
2018-11-13 12:57:54 +03:00
2019-12-13 20:35:29 +03:00
await circuit.assertOut(w, {out: PBASE[0]});
2018-11-13 12:57:54 +03:00
});
it("Should pedersen at one second generator", async () => {
2019-12-13 20:35:29 +03:00
let w;
2018-11-13 12:57:54 +03:00
2020-03-26 21:24:20 +03:00
w = await circuit.calculateWitness({ in: ["0", "1"]}, true);
2018-11-13 12:57:54 +03:00
2019-12-13 20:35:29 +03:00
await circuit.assertOut(w, {out: PBASE[1]});
2018-11-13 12:57:54 +03:00
});
it("Should pedersen at mixed generators", async () => {
2019-12-13 20:35:29 +03:00
let w;
2020-03-26 21:24:20 +03:00
w = await circuit.calculateWitness({ in: ["3", "7"]}, true);
2018-11-13 12:57:54 +03:00
const r = babyJub.addPoint(
babyJub.mulPointEscalar(PBASE[0], 3),
babyJub.mulPointEscalar(PBASE[1], 7)
);
2019-12-13 20:35:29 +03:00
await circuit.assertOut(w, {out: r});
2018-11-13 12:57:54 +03:00
});
it("Should pedersen all ones", async () => {
2019-12-13 20:35:29 +03:00
let w;
2018-11-13 12:57:54 +03:00
2019-12-13 20:35:29 +03:00
const allOnes = bigInt("1").shiftLeft(250).minus(bigInt("1"));
2020-03-26 21:24:20 +03:00
w = await circuit.calculateWitness({ in: [allOnes, allOnes]}, true);
2018-11-13 12:57:54 +03:00
const r2 = babyJub.addPoint(
babyJub.mulPointEscalar(PBASE[0], allOnes),
babyJub.mulPointEscalar(PBASE[1], allOnes)
);
2019-12-13 20:35:29 +03:00
await circuit.assertOut(w, {out: r2});
2018-11-13 12:57:54 +03:00
});
});