plugins: Use get_option_enum where appropriate

This commit is contained in:
Kim Alvefur 2021-01-16 21:04:58 +01:00
parent c4abd68e92
commit a8b0c56f65
5 changed files with 11 additions and 8 deletions

View file

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