反转解码功能

时间:2018-09-05 14:30:33

标签: lua

我正在尝试反转解码功能。此函数接受一个字符串和一个密钥,并使用该密钥对字符串进行编码。这是代码:

function decode(key, code)
  return (code:gsub("..", function(h)
    return string.char((tonumber(h, 16) + 256 - 13 - key + 255999744) % 256)
  end))
end

如果我将7A输入为code,将9990输入为key,则会返回g

我尝试反转运算符并反馈了解码函数的输出,但由于出现错误,因为tonumber()返回nil。如何取消此功能?

1 个答案:

答案 0 :(得分:2)

通过使用对此Lua base coverter的答案,并翻转解码函数的运算符,我可以将输入转换回去。

这是整个代码:

function encodes(key, code)
  return (code:gsub("..", function(h)
    return string.char((tonumber(h, 16) + 256 - 13 - key + 255999744) % 256)
  end))
end

local floor,insert = math.floor, table.insert
function basen(n,b)
    n = floor(n)
    if not b or b == 10 then return tostring(n) end
    local digits = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
    local t = {}
    local sign = ""
    if n < 0 then
        sign = "-"
    n = -n
    end
    repeat
        local d = (n % b) + 1
        n = floor(n / b)
        insert(t, 1, digits:sub(d,d))
    until n == 0
    return sign .. table.concat(t,"")
end

function decodes(key, code)
  return (code:gsub(".", function(h)
    out = (string.byte(h) - 256 + 13 + key - 255999744) % 256
    return basen(out,16)
  end))
end

a = encodes(9999, "7c7A")
print(a) --prints: `^
print("----------")
b = decodes(9999, a)
print(b) --prints: 7C7A