ejabberd2prosody: Convert SCRAM iteration count to number (thanks arcseconds)

This commit is contained in:
Matthew Wild 2021-10-07 11:16:46 +01:00
parent eda4a96f2f
commit 7925b95a58

View file

@ -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);