ffi hwid

  1. mercury1337

    Исходник LuaJIT: collection of useful functions

    LuaJIT: collection of useful functions 𒉭 mrxcry ~ lua reverse engineering 1.String encrypt / decrypt with key shared v1 local function bxor(a, b) local r = 0 for i = 0, 31 do if (a % 2 + b % 2 == 1) then r = r + 2^i end a = math.floor(a / 2) b = math.floor(b / 2) end...