File

libs/encodings.lua @ 114:37f5966cff15

verse.plugins.pep: New plugin to add an API for sending and catching PEP events
author Matthew Wild <mwild1@gmail.com>
date Wed, 25 Aug 2010 16:27:30 +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;