Никак.
function encode(text)
array = "{"
for i = 1, #text do
array = array..(text:sub(i, i):byte()+1)..","
end
return array..'}'
end
function get_encode_text(t)
text = ""
for i = 1, #t do
text = text..string.char(t[i])
end
return text
end
function decode(text)
array = ""
for i = 1, #text do
array = array..string.char((text:sub(i, i):byte())-1)
end
return array
end
print(encode("Govno Encoder"))
print(get_encode_text({72,112,119,111,112,33,70,111,100,112,101,102,115,}))
print(decode("Hpwop!Fodpefs"))