|
@ -28,7 +28,7 @@ Hash.sha256sha256 = function(buf) { |
|
|
|
|
|
|
|
|
Hash.ripemd160 = function(buf) { |
|
|
Hash.ripemd160 = function(buf) { |
|
|
$.checkArgument(BufferUtil.isBuffer(buf)); |
|
|
$.checkArgument(BufferUtil.isBuffer(buf)); |
|
|
return crypto.createHash('rmd160').update(buf).digest(); |
|
|
return crypto.createHash('ripemd160').update(buf).digest(); |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
Hash.sha256ripemd160 = function(buf) { |
|
|
Hash.sha256ripemd160 = function(buf) { |
|
|