mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_auth_internal_hashed: Precompute SCRAM authentication profile name (thanks MattJ)
This commit is contained in:
parent
a746aba7a2
commit
b8ad8ccc88
1 changed files with 2 additions and 1 deletions
|
@ -23,6 +23,7 @@ local accounts = module:open_store("accounts");
|
|||
|
||||
local hash_name = module:get_option_string("password_hash", "SHA-1");
|
||||
local get_auth_db = assert(scram_hashers[hash_name], "SCRAM-"..hash_name.." not supported by SASL library");
|
||||
local scram_name = "scram_"..hash_name:gsub("%-","_"):lower();
|
||||
|
||||
-- Default; can be set per-user
|
||||
local default_iteration_count = 4096;
|
||||
|
@ -117,7 +118,7 @@ function provider.get_sasl_handler()
|
|||
plain_test = function(_, username, password, realm)
|
||||
return usermanager.test_password(username, realm, password), true;
|
||||
end,
|
||||
["scram_"..hash_name:gsub("%-","_"):lower()] = function(_, username)
|
||||
[scram_name] = function(_, username)
|
||||
local credentials = accounts:get(username);
|
||||
if not credentials then return; end
|
||||
if credentials.password then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue