File

libs/encodings.lua @ 110:3fca7dd127df

doc/example_jingle.lua, doc/example_jingle_send.lua: Example scripts to receive and send files using Jingle
author Matthew Wild <mwild1@gmail.com>
date Tue, 24 Aug 2010 11:16:46 +0100
parent 107:59c6f2deb8ab
child 130:5de7f66e4168
line wrap: on
line source

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

module "encodings"

stringprep = {};
base64 = { encode = not_impl, decode = not_impl };

return _M;