libs/encodings.lua

Tue, 25 Aug 2015 16:27:38 +0200

author
Kim Alvefur <zash@zash.se>
date
Tue, 25 Aug 2015 16:27:38 +0200
changeset 391
b496f0262a3f
parent 130
5de7f66e4168
child 431
9d7a293849f3
permissions
-rw-r--r--

libs.encodings: mime.unb64 is buggy with \0 should have been fixed

local function not_impl()
	error("Function not implemented");
end

local mime = require "mime";

module "encodings"

stringprep = {};
base64 = { encode = mime.b64, decode = mime.unb64 };

return _M;

mercurial