make miscchecks, skip venv

This commit is contained in:
Philippe Teuwen 2025-03-23 23:22:23 +01:00
commit 78ae375d55
5 changed files with 37 additions and 37 deletions

View file

@ -297,7 +297,7 @@ end
function xorme(hex, xor, index)
if ( index >= 23 ) then
--return ('%02x'):format(bxor( tonumber(hex,16) , tonumber(xor,16) ))
return string.format("%x", tonumber(hex,16) ~ tonumber(xor,16))
return string.format("%x", tonumber(hex,16) ~ tonumber(xor,16))
else
return hex
end