diff options
author | Matthew Wild <mwild1@gmail.com> | 2015-05-19 09:31:12 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2015-05-19 09:31:12 +0100 |
commit | 527e1e4bad2c8536f9c0b905e77d2679ca9ae9d5 (patch) | |
tree | 6225faf7bc524edf57e2118bc8633e07d2b28333 /plugins/mod_auth_internal_hashed.lua | |
parent | a1eac64a926aeeec8babac775aa689dab4a598d3 (diff) | |
parent | bb08d35ca72865e4ba3432a30a6df7e4d9e77c62 (diff) | |
download | prosody-527e1e4bad2c8536f9c0b905e77d2679ca9ae9d5.tar.gz prosody-527e1e4bad2c8536f9c0b905e77d2679ca9ae9d5.zip |
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_auth_internal_hashed.lua')
-rw-r--r-- | plugins/mod_auth_internal_hashed.lua | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/plugins/mod_auth_internal_hashed.lua b/plugins/mod_auth_internal_hashed.lua index 954392c9..78abe50d 100644 --- a/plugins/mod_auth_internal_hashed.lua +++ b/plugins/mod_auth_internal_hashed.lua @@ -13,31 +13,14 @@ local getAuthenticationDatabaseSHA1 = require "util.sasl.scram".getAuthenticatio local usermanager = require "core.usermanager"; local generate_uuid = require "util.uuid".generate; local new_sasl = require "util.sasl".new; +local hex = require"util.hex"; +local to_hex, from_hex = hex.to, hex.from; local log = module._log; local host = module.host; local accounts = module:open_store("accounts"); -local to_hex; -do - local function replace_byte_with_hex(byte) - return ("%02x"):format(byte:byte()); - end - function to_hex(binary_string) - return binary_string:gsub(".", replace_byte_with_hex); - end -end - -local from_hex; -do - local function replace_hex_with_byte(hex) - return string.char(tonumber(hex, 16)); - end - function from_hex(hex_string) - return hex_string:gsub("..", replace_hex_with_byte); - end -end -- Default; can be set per-user |