mod_storage_xep0227: Use enum option method

This commit is contained in:
Kim Alvefur 2023-07-18 12:32:05 +02:00
parent 88e969dec2
commit 7b32c69b43

View file

@ -80,7 +80,7 @@ local handlers = {};
-- In order to support custom account properties
local extended = "http://prosody.im/protocol/extended-xep0227\1";
local scram_hash_name = module:get_option_string("password_hash", "SHA-1");
local scram_hash_name = module:get_option_enum("password_hash", "SHA-1", "SHA-256");
local scram_properties = set.new({ "server_key", "stored_key", "iteration_count", "salt" });
handlers.accounts = {