mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
mod_storage_xep0227: Fix conversion of SCRAM into internal format (fix #1741)
Looks like this function was a copy of hex_to_base64 without modifying it to do its inverse.
This commit is contained in:
parent
fc6f400997
commit
e626855282
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ local function hex_to_base64(s)
|
|||
end
|
||||
|
||||
local function base64_to_hex(s)
|
||||
return base64.encode(hex.decode(s));
|
||||
return hex.encode(base64.decode(s));
|
||||
end
|
||||
|
||||
local handlers = {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue