UNPKG

snarkjs

Version:

zkSNARKs implementation in JavaScript

26 lines (20 loc) 1.12 kB
/* Copyright 2022 iden3 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 <https://www.gnu.org/licenses/>. */ export { default as setup } from "./fflonk_setup.js"; export { default as prove } from "./fflonk_prove.js"; export { default as fullProve } from "./fflonk_full_prove.js"; export { default as verify } from "./fflonk_verify.js"; export { default as exportSolidityVerifier } from "./fflonk_export_solidity_verifier.js"; export { default as exportSolidityCallData } from "./fflonk_export_calldata.js";