mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
plugins: Use get_option_enum where appropriate
This commit is contained in:
parent
c4abd68e92
commit
a8b0c56f65
5 changed files with 11 additions and 8 deletions
|
@ -22,7 +22,7 @@ local host = module.host;
|
|||
|
||||
local accounts = module:open_store("accounts");
|
||||
|
||||
local hash_name = module:get_option_string("password_hash", "SHA-1");
|
||||
local hash_name = module:get_option_enum("password_hash", "SHA-1", "SHA-256");
|
||||
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();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue