diff --git a/lib/algoProperties.js b/lib/algoProperties.js index 90a7fe3..1d25686 100644 --- a/lib/algoProperties.js +++ b/lib/algoProperties.js @@ -105,7 +105,7 @@ var algos = module.exports = global.algos = { } }, groestl: { - multiplier: Math.pow(2, 16), + multiplier: Math.pow(2, 8), hash: function(){ return function(){ return multiHashing.groestl.apply(this, arguments); @@ -113,7 +113,7 @@ var algos = module.exports = global.algos = { } }, fugue: { - multiplier: Math.pow(2, 16), + multiplier: Math.pow(2, 8), hash: function(){ return function(){ return multiHashing.fugue.apply(this, arguments);