Lyra2RE diff by 128

This commit is contained in:
romanornr 2016-12-01 01:41:19 +01:00
parent 13653a3951
commit 7830585023
No known key found for this signature in database
GPG Key ID: 3F92368F0D21A206
2 changed files with 10 additions and 0 deletions

View File

@ -73,6 +73,15 @@ var algos = module.exports = global.algos = {
} }
} }
}, },
lyra2re: {
multiplier: Math.pow(2, 7),
hash: function(){
return function(){
return multiHashing.lyra2re.apply(this, arguments);
}
}
},
}
sha1: { sha1: {
hash: function(){ hash: function(){
return function(){ return function(){

View File

@ -102,6 +102,7 @@ var JobManager = module.exports = function JobManager(options){
return util.reverseBuffer(hashDigest.apply(this, arguments)); return util.reverseBuffer(hashDigest.apply(this, arguments));
}; };
} }
case 'lyra2re':
case 'scrypt-n': case 'scrypt-n':
case 'sha1': case 'sha1':
return function (d) { return function (d) {