const bn128 = require("snarkjs").bn128; const bigInt = require("snarkjs").bigInt; const Web3 = require("web3"); const F = bn128.Fr; const SEED = "mimc"; const NROUNDS = 91; exports.getIV = (seed) => { if (typeof seed === "undefined") seed = SEED; const c = Web3.utils.keccak256(seed+"_iv"); const cn = bigInt(Web3.utils.toBN(c).toString()); const iv = cn.mod(F.q); return iv; }; exports.getConstants = (seed, nRounds) => { if (typeof seed === "undefined") seed = SEED; if (typeof nRounds === "undefined") nRounds = NROUNDS; const cts = new Array(nRounds); let c = Web3.utils.keccak256(SEED); for (let i=1; i{ const x_in = bigInt(_x_in); const k = bigInt(_k); let r; for (let i=0; i