# HG changeset patch # User Kim Alvefur # Date 1689676325 -7200 # Node ID 6375f0741f90f8c86105797976ce83d48b8bee07 # Parent 71c28b36923fa151e2a916e8a6275cdaabe182ca mod_storage_xep0227: Use enum option method diff -r 71c28b36923f -r 6375f0741f90 plugins/mod_storage_xep0227.lua --- a/plugins/mod_storage_xep0227.lua Tue Jul 18 12:31:29 2023 +0200 +++ b/plugins/mod_storage_xep0227.lua Tue Jul 18 12:32:05 2023 +0200 @@ -80,7 +80,7 @@ -- 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 = {