Anavrins

Base64

Oct 3rd, 2016 (edited)
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.04 KB | None | 0 0
  1. -- Base64 encoding/decoding in ComputerCraft
  2. -- By Anavrins
  3. -- For help and details, you can DM me on Discord (Anavrins#4600)
  4. -- MIT License
  5. -- Pastebin: https://pastebin.com/TEtna4tX
  6. -- Last updated: Nov 4 2021
  7.  
  8. local base64chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="
  9. local charAt, indexOf = {}, {}
  10.  
  11. local blshift = bit32 and bit32.lshift or bit.blshift
  12. local brshift = bit32 and bit32.rshift or bit.brshift
  13. local band = bit32 and bit32.band or bit.band
  14. local bor = bit32 and bit32.bor or bit.bor
  15.  
  16. for i = 1, #base64chars do
  17.     local char = base64chars:sub(i,i)
  18.     charAt[i-1] = char
  19.     indexOf[char] = i-1
  20. end
  21.  
  22. local function encode(data)
  23.     local data = type(data) == "table" and data or {tostring(data):byte(1,-1)}
  24.  
  25.     local out = {}
  26.     local b
  27.     for i = 1, #data, 3 do
  28.         b = brshift(band(data[i], 0xFC), 2) -- 11111100
  29.         out[#out+1] = charAt[b]
  30.         b = blshift(band(data[i], 0x03), 4) -- 00000011
  31.         if i+0 < #data then
  32.             b = bor(b, brshift(band(data[i+1], 0xF0), 4)) -- 11110000
  33.             out[#out+1] = charAt[b]
  34.             b = blshift(band(data[i+1], 0x0F), 2) -- 00001111
  35.             if i+1 < #data then
  36.                 b = bor(b, brshift(band(data[i+2], 0xC0), 6)) -- 11000000
  37.                 out[#out+1] = charAt[b]
  38.                 b = band(data[i+2], 0x3F) -- 00111111
  39.                 out[#out+1] = charAt[b]
  40.             else out[#out+1] = charAt[b].."="
  41.             end
  42.         else out[#out+1] = charAt[b].."=="
  43.         end
  44.     end
  45.     return table.concat(out)
  46. end
  47.  
  48. local function decode(data)
  49. --  if #data%4 ~= 0 then error("Invalid base64 data", 2) end
  50.  
  51.     local decoded = {}
  52.     local inChars = {}
  53.     for char in data:gmatch(".") do
  54.         inChars[#inChars+1] = char
  55.     end
  56.     for i = 1, #inChars, 4 do
  57.         local b = {indexOf[inChars[i]],indexOf[inChars[i+1]],indexOf[inChars[i+2]],indexOf[inChars[i+3]]}
  58.         decoded[#decoded+1] = bor(blshift(b[1], 2), brshift(b[2], 4))%256
  59.         if b[3] < 64 then decoded[#decoded+1] = bor(blshift(b[2], 4), brshift(b[3], 2))%256
  60.             if b[4] < 64 then decoded[#decoded+1] = bor(blshift(b[3], 6), b[4])%256 end
  61.         end
  62.     end
  63.     return decoded
  64. end
  65.  
  66. return {
  67.     encode = encode,
  68.     decode = decode,
  69. }
Add Comment
Please, Sign In to add comment