We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f5906a0 + 12d84a2 commit 80acc7dCopy full SHA for 80acc7d
hash.js
@@ -61,7 +61,7 @@ Hash.prototype.digest = function (enc) {
61
62
// uint64
63
} else {
64
- var lowBits = bits & 0xffffffff
+ var lowBits = (bits & 0xffffffff) >>> 0
65
var highBits = (bits - lowBits) / 0x100000000
66
67
this._block.writeUInt32BE(highBits, this._blockSize - 8)
0 commit comments