Files
Pyarmor-Static-Unpack-1shot/tests/input/test_expressions.py
2019-10-03 22:08:44 -07:00

3 lines
111 B
Python

def _lsbStrToInt(str):
return ord(str[0]) + (ord(str[1]) << 8) + (ord(str[2]) << 16) + (ord(str[3]) << 24)