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.
1 parent f5906a0 commit 12d84a2Copy full SHA for 12d84a2
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