Module:Sandbox/User:Chen/md5

From Illerai
Jump to navigation Jump to search

Documentation for this module may be created at Module:Sandbox/User:Chen/md5/doc

--<nowiki>
local p = {}
local md5 = require("Module:Sandbox/User:Chen/md5impl")

function p.main(frame)
	local args = frame:getParent().args
	return md5.sumhexa(args[1])
end

function p.fn(frame)
	local args = frame:getParent().args
	local _m = md5.sumhexa(args[1])
	return "https://oldschool.runescape.wiki/images/" .. string.sub(_m, 1, 1) .. "/" .. string.sub(_m, 1, 2) .. "/" .. args[1]
end

return p
--</nowiki>