const chai = require("chai"); const path = require("path"); const snarkjs = require("snarkjs"); const compiler = require("circom"); const assert = chai.assert; const bigInt = snarkjs.bigInt; function print(circuit, w, s) { console.log(s + ": " + w[circuit.getSignalIdx(s)]); } function getBits(v, n) { const res = []; for (let i=0; i { let circuit; before( async() => { const cirDef = await compiler(path.join(__dirname, "circuits", "sign_test.circom")); circuit = new snarkjs.Circuit(cirDef); console.log("NConstrains: " + circuit.nConstraints); }); it("Sign of 0", async () => { const inp = getBits(bigInt.zero, 254); const w = circuit.calculateWitness({in: inp}); assert( w[circuit.getSignalIdx("main.sign")].equals(bigInt(0)) ); }); it("Sign of 3", async () => { const inp = getBits(bigInt(3), 254); const w = circuit.calculateWitness({in: inp}); assert( w[circuit.getSignalIdx("main.sign")].equals(bigInt(0)) ); }); it("Sign of q/2", async () => { const inp = getBits(q.shr(bigInt.one), 254); const w = circuit.calculateWitness({in: inp}); assert( w[circuit.getSignalIdx("main.sign")].equals(bigInt(0)) ); }); it("Sign of q/2+1", async () => { const inp = getBits(q.shr(bigInt.one).add(bigInt.one), 254); const w = circuit.calculateWitness({in: inp}); assert( w[circuit.getSignalIdx("main.sign")].equals(bigInt(1)) ); }); it("Sign of q-1", async () => { const inp = getBits(q.sub(bigInt.one), 254); const w = circuit.calculateWitness({in: inp}); assert( w[circuit.getSignalIdx("main.sign")].equals(bigInt(1)) ); }); it("Sign of q", async () => { const inp = getBits(q, 254); const w = circuit.calculateWitness({in: inp}); assert( w[circuit.getSignalIdx("main.sign")].equals(bigInt(1)) ); }); it("Sign of all ones", async () => { const inp = getBits(bigInt(1).shl(254).sub(bigInt(1)), 254); const w = circuit.calculateWitness({in: inp}); assert( w[circuit.getSignalIdx("main.sign")].equals(bigInt(1)) ); }); });