Skip to content

Instantly share code, notes, and snippets.

View hhkcu's full-sized avatar
🍊
🍊

hkcu hhkcu

🍊
🍊
View GitHub Profile
@hhkcu
hhkcu / Base64.lua
Created October 4, 2021 14:47 — forked from bortels/Base64.lua
Base64 encode/decode for Codea (Lua)
-- Lua 5.1+ base64 v3.0 (c) 2009 by Alex Kloss <alexthkloss@web.de>
-- licensed under the terms of the LGPL2
-- character table string
local b='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'
-- encoding
function enc(data)
return ((data:gsub('.', function(x)
local r,b='',x:byte()