This commit is contained in:
Jordi Baylina 2020-07-15 06:30:52 +02:00
parent 1c62e39ef5
commit 6b1dcb0893
No known key found for this signature in database
GPG Key ID: 7480C80C1BE43112
4 changed files with 6 additions and 6 deletions

@ -739,7 +739,7 @@ async function r1csExportJson(r1csFileName, logger) {
var name = "snarkjs"; var name = "snarkjs";
var type = "module"; var type = "module";
var version = "0.3.4"; var version = "0.3.5";
var description = "zkSNARKs implementation in JavaScript"; var description = "zkSNARKs implementation in JavaScript";
var main = "./build/main.cjs"; var main = "./build/main.cjs";
var module$1 = "./main.js"; var module$1 = "./main.js";
@ -2634,9 +2634,9 @@ async function challengeContribute(curve, challengeFilename, responesFileName, e
const fdTo = await createOverride(responesFileName); const fdTo = await createOverride(responesFileName);
// Calculate the hash // Calculate the hash
if (logger) logger.debug("Hashing challenge");
const challengeHasher = Blake2b(64); const challengeHasher = Blake2b(64);
for (let i=0; i<fdFrom.totalSize; i+= fdFrom.pageSize) { for (let i=0; i<fdFrom.totalSize; i+= fdFrom.pageSize) {
if (logger) logger.debug(`Hashing challenge ${i}/${fdFrom.totalSize}`);
const s = Math.min(fdFrom.totalSize - i, fdFrom.pageSize); const s = Math.min(fdFrom.totalSize - i, fdFrom.pageSize);
const buff = await fdFrom.read(s); const buff = await fdFrom.read(s);
challengeHasher.update(buff); challengeHasher.update(buff);

@ -2835,9 +2835,9 @@ async function challengeContribute(curve, challengeFilename, responesFileName, e
const fdTo = await createOverride(responesFileName); const fdTo = await createOverride(responesFileName);
// Calculate the hash // Calculate the hash
if (logger) logger.debug("Hashing challenge");
const challengeHasher = Blake2b(64); const challengeHasher = Blake2b(64);
for (let i=0; i<fdFrom.totalSize; i+= fdFrom.pageSize) { for (let i=0; i<fdFrom.totalSize; i+= fdFrom.pageSize) {
if (logger) logger.debug(`Hashing challenge ${i}/${fdFrom.totalSize}`);
const s = Math.min(fdFrom.totalSize - i, fdFrom.pageSize); const s = Math.min(fdFrom.totalSize - i, fdFrom.pageSize);
const buff = await fdFrom.read(s); const buff = await fdFrom.read(s);
challengeHasher.update(buff); challengeHasher.update(buff);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long