File

libs/encodings.lua @ 403:6f4f60ebb796

Add plugin for XEP-0195: User Browsing
author Kim Alvefur <zash@zash.se>
date Sun, 15 May 2016 16:23:54 +0200
parent 391:b496f0262a3f
child 431:9d7a293849f3
line wrap: on
line source

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;