From 7925b95a586b5d347c091249c1b0f2d86d99be01 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Thu, 7 Oct 2021 11:16:46 +0100 Subject: ejabberd2prosody: Convert SCRAM iteration count to number (thanks arcseconds) --- tools/ejabberd2prosody.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/ejabberd2prosody.lua b/tools/ejabberd2prosody.lua index 46a48f57..6aef1ff2 100755 --- a/tools/ejabberd2prosody.lua +++ b/tools/ejabberd2prosody.lua @@ -85,7 +85,7 @@ function password(node, host, password) data.stored_key = hex(unb64(password[2])); data.server_key = hex(unb64(password[3])); data.salt = unb64(password[4]); - data.iteration_count = password[5]; + data.iteration_count = tonumber(password[5]); end local ret, err = dm.store(node, host, "accounts", data); print("["..(err or "success").."] accounts: "..node.."@"..host); -- cgit v1.2.3