core/s2smanager.lua

changeset 448
2623519b25b0
parent 435
4087aa611de2
child 451
e9f269e5204e
--- a/core/s2smanager.lua	Fri Nov 28 00:48:16 2008 +0500
+++ b/core/s2smanager.lua	Fri Nov 28 01:13:34 2008 +0500
@@ -21,7 +21,7 @@
 
 local log = logger_init("s2smanager");
 
-local md5_hash = require "util.hashes".md5;
+local sha256_hash = require "util.hashes".sha256;
 
 local dialback_secret = "This is very secret!!! Ha!";
 
@@ -210,7 +210,7 @@
 end
 
 function generate_dialback(id, to, from)
-	return md5_hash(id..to..from..dialback_secret); -- FIXME: See XEP-185 and XEP-220
+	return sha256_hash(id..to..from..dialback_secret, true);
 end
 
 function verify_dialback(id, to, from, key)

mercurial