Software /
code /
prosody
Diff
core/s2smanager.lua @ 448:2623519b25b0
Switched from md5 to sha256 for dialback key generation
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Fri, 28 Nov 2008 01:13:34 +0500 |
parent | 435:4087aa611de2 |
child | 451:e9f269e5204e |
line wrap: on
line diff
--- 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)