File

libs/encodings.lua @ 111:75c73ac9d5a6

util.sha1: Truncate to a single return result when returning the binary form of the hash
author Matthew Wild <mwild1@gmail.com>
date Wed, 25 Aug 2010 13:19:53 +0100 (2010-08-25)
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;