File

util/hashes.lua @ 5558:774ab5f2efa6 s2s

Close 's2s' branch
author Matthew Wild <mwild1@gmail.com>
date Wed, 01 May 2013 13:54:00 +0100
parent 148:4c0dcd245d34
child 155:8c9a9f6f6455
line wrap: on
line source


local softreq = function (...) return select(2, pcall(require, ...)); end

module "hashes"

local md5 = softreq("md5");
if md5 then
	if md5.digest then
		local md5_digest = md5.digest;
		local sha1_digest = sha1.digest;
		function _M.md5(input)
			return md5_digest(input);
		end
		function _M.sha1(input)
			return sha1_digest(input);
		end
	elseif md5.sumhexa then
		local md5_sumhexa = md5.sumhexa;
		function _M.md5(input)
			return md5_sumhexa(input);
		end
	else
		error("md5 library found, but unrecognised... no hash functions will be available", 0);
	end
end

return _M;