Diff

core/usermanager.lua @ 0:3e3171b59028

First commit, where do you want to go tomorrow?
author matthew
date Fri, 22 Aug 2008 21:09:04 +0000
child 38:3fdfd6e0cb4e
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/core/usermanager.lua	Fri Aug 22 21:09:04 2008 +0000
@@ -0,0 +1,11 @@
+
+require "util.datamanager"
+local datamanager = datamanager;
+
+module "usermanager"
+
+function validate_credentials(host, username, password)
+	local credentials = datamanager.load(username, host, "accounts") or {};
+	if password == credentials.password then return true; end
+	return false;
+end