/* Copyright 2018 0kims association. This file is part of snarkjs. snarkjs is a free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. snarkjs is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with snarkjs. If not, see . */ exports.Circuit = require("./src/circuit.js"); exports.original = { setup: require("./src/setup_original.js"), genProof: require("./src/prover_original.js"), isValid: require("./src/verifier_original.js") }; exports.groth = { setup: require("./src/setup_groth.js"), genProof: require("./src/prover_groth.js"), isValid: require("./src/verifier_groth.js") }; exports.kimleeoh = { setup: require("./src/setup_kimleeoh.js"), genProof: require("./src/prover_kimleeoh.js"), isValid: require("./src/verifier_kimleeoh.js") }; exports.bigInt = require("./src/bigint.js"); exports.ZqField = require("./src/zqfield.js"); exports.stringifyBigInts = require("./src/stringifybigint.js").stringifyBigInts; exports.unstringifyBigInts = require("./src/stringifybigint.js").unstringifyBigInts; const Bn128 = require("./src/bn128.js"); exports.bn128 = new Bn128();