mhmad How do I cheat?
Reputation: 0
Joined: 15 Jun 2016 Posts: 1
|
Posted: Wed Jun 15, 2016 3:55 pm Post subject: base 64 |
|
|
local function Browser(text,key)
return
text:gsub("%a",function(t)
local base=(t:lower()==t and string.byte('a') or string.byte('A'))
local r=t:byte()-base
r=r+key
r=r%26
r=r+base
return
string.char(r) end)
end
local function PIDD(text,key)
return
Browser(text,-key)
end |
|