I'm trying to convert this Javascript to PHP but i got struck with ">>>". Any idea to convert it?
_loc7 = (_loc2 >>> 5 ^ _loc3 << 2) + (_loc3 >>> 3 ^ _loc2 << 4) ^ (_loc6 ^ _loc3) + (_loc9[_loc1 & 3 ^ _loc8] ^ _loc2);
P/s: Sorry for my bad English.
I'm trying to convert this Javascript to PHP but i got struck with ">>>". Any idea to convert it?
_loc7 = (_loc2 >>> 5 ^ _loc3 << 2) + (_loc3 >>> 3 ^ _loc2 << 4) ^ (_loc6 ^ _loc3) + (_loc9[_loc1 & 3 ^ _loc8] ^ _loc2);
P/s: Sorry for my bad English.
The problem is fixed in Unsigned Right Shift / Zero-fill Right Shift / >>> in PHP (Java/JavaScript equivalent)
Topic closed. Thanks for helping me.