Node.js examples for Number:Hex
Bitwise rotate a 32-bit number to the left.
function rol(num, cnt) { return (num << cnt) | (num >>> (32 - cnt)); }