circomlib/test/escalarmulfix.js

91 lines
2.5 KiB
JavaScript
Raw Normal View History

const chai = require("chai");
const path = require("path");
2019-12-14 22:32:45 +03:00
const bigInt = require("big-integer");
const tester = require("circom").tester;
const babyjub = require("../src/babyjub");
const assert = chai.assert;
function print(circuit, w, s) {
console.log(s + ": " + w[circuit.getSignalIdx(s)]);
}
describe("Escalarmul test", function () {
let circuit;
this.timeout(100000);
before( async() => {
2019-12-14 22:32:45 +03:00
circuit = await tester(path.join(__dirname, "circuits", "escalarmulfix_test.circom"));
});
it("Should generate Same escalar mul", async () => {
2019-12-14 22:32:45 +03:00
const w = await circuit.calculateWitness({"e": 0});
2019-12-16 23:35:52 +03:00
await circuit.checkConstraints(w);
2019-12-14 22:32:45 +03:00
await circuit.assertOut(w, {out: [0,1]});
});
it("Should generate Same escalar mul", async () => {
2019-12-14 22:32:45 +03:00
const w = await circuit.calculateWitness({"e": 1});
2019-12-16 23:35:52 +03:00
await circuit.checkConstraints(w);
2019-12-14 22:32:45 +03:00
await circuit.assertOut(w, {out: babyjub.Base8});
});
2019-07-30 20:35:19 +03:00
it("Should generate scalar mul of a specific constant", async () => {
const s = bigInt("2351960337287830298912035165133676222414898052661454064215017316447594616519");
const base8 = [
bigInt("5299619240641551281634865583518297030282874472190772894086521144482721001553"),
bigInt("16950150798460657717958625567821834550301663161624707787222815936182638968203")
2019-07-30 20:35:19 +03:00
];
2019-12-14 22:32:45 +03:00
const w = await circuit.calculateWitness({"e": s});
2019-07-30 20:35:19 +03:00
2019-12-16 23:35:52 +03:00
await circuit.checkConstraints(w);
2019-07-30 20:35:19 +03:00
const expectedRes = babyjub.mulPointEscalar(base8, s);
2019-12-14 22:32:45 +03:00
await circuit.assertOut(w, {out: expectedRes});
2019-07-30 20:35:19 +03:00
});
it("Should generate scalar mul of the firsts 50 elements", async () => {
const base8 = [
bigInt("5299619240641551281634865583518297030282874472190772894086521144482721001553"),
bigInt("16950150798460657717958625567821834550301663161624707787222815936182638968203")
2019-07-30 20:35:19 +03:00
];
for (let i=0; i<50; i++) {
const s = bigInt(i);
2019-12-14 22:32:45 +03:00
const w = await circuit.calculateWitness({"e": s});
2019-07-30 20:35:19 +03:00
2019-12-16 23:35:52 +03:00
await circuit.checkConstraints(w);
2019-07-30 20:35:19 +03:00
const expectedRes = babyjub.mulPointEscalar(base8, s);
2019-12-14 22:32:45 +03:00
await circuit.assertOut(w, {out: expectedRes});
2019-07-30 20:35:19 +03:00
}
});
it("If multiply by order should return 0", async () => {
2019-12-14 22:32:45 +03:00
const w = await circuit.calculateWitness({"e": babyjub.subOrder });
2019-12-16 23:35:52 +03:00
await circuit.checkConstraints(w);
2019-12-14 22:32:45 +03:00
await circuit.assertOut(w, {out: [0,1]});
});
});