libs/encodings.lua

Wed, 27 Jun 2018 19:17:51 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Wed, 27 Jun 2018 19:17:51 +0100
changeset 421
f35cfdff31b6
parent 391
b496f0262a3f
child 431
9d7a293849f3
permissions
-rw-r--r--

libs.hashes: Add support for sha1 lib from luarocks

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