Fixed share multipliers for groestl and fugue
This commit is contained in:
parent
c7bf05107f
commit
89e9f47e47
@ -105,7 +105,7 @@ var algos = module.exports = global.algos = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
groestl: {
|
groestl: {
|
||||||
multiplier: Math.pow(2, 16),
|
multiplier: Math.pow(2, 8),
|
||||||
hash: function(){
|
hash: function(){
|
||||||
return function(){
|
return function(){
|
||||||
return multiHashing.groestl.apply(this, arguments);
|
return multiHashing.groestl.apply(this, arguments);
|
||||||
@ -113,7 +113,7 @@ var algos = module.exports = global.algos = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
fugue: {
|
fugue: {
|
||||||
multiplier: Math.pow(2, 16),
|
multiplier: Math.pow(2, 8),
|
||||||
hash: function(){
|
hash: function(){
|
||||||
return function(){
|
return function(){
|
||||||
return multiHashing.fugue.apply(this, arguments);
|
return multiHashing.fugue.apply(this, arguments);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user