UNPKG

snarkjs

Version:

zkSNARKs implementation in JavaScript

31 lines (25 loc) 1.46 kB
/* 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 <https://www.gnu.org/licenses/>. */ export {default as newAccumulator} from "./powersoftau_new.js"; export {default as exportChallenge} from "./powersoftau_export_challenge.js"; export {default as importResponse} from "./powersoftau_import.js"; export {default as verify} from "./powersoftau_verify.js"; export {default as challengeContribute} from "./powersoftau_challenge_contribute.js"; export {default as beacon} from "./powersoftau_beacon.js"; export {default as contribute} from "./powersoftau_contribute.js"; export {default as preparePhase2} from "./powersoftau_preparephase2.js"; export {default as truncate} from "./powersoftau_truncate.js"; export {default as convert} from "./powersoftau_convert.js"; export {default as exportJson} from "./powersoftau_export_json.js";