Skip to content

Commit

Permalink
Update groestl.js
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTrunk authored Dec 3, 2024
1 parent 5f7d064 commit cef5544
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/groestl.js
Original file line number Diff line number Diff line change
Expand Up @@ -1076,7 +1076,7 @@ var B64 = function(n, x) {
}
else {
var bitsOff32 = 32 - bits,
toMoveDown = this.hi << bitsOff32 >>> bitsOff32;
toMoveDown = x.hi << bitsOff32 >>> bitsOff32;
return (x.lo >>> bits | (toMoveDown << bitsOff32)) & 0xFF;
}
}
Expand Down Expand Up @@ -1245,4 +1245,4 @@ module.exports = function(input, format, output) {
out = h.int32ArrayToHexString(r)
}
return out;
}
}

0 comments on commit cef5544

Please sign in to comment.