mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.hex: Deprecate to/from in favour of encode/decode, for consistency!
This commit is contained in:
parent
fe56effa55
commit
ab835fed13
8 changed files with 31 additions and 27 deletions
|
@ -68,11 +68,11 @@ local function createOuterXml(user, host)
|
|||
end
|
||||
|
||||
local function hex_to_base64(s)
|
||||
return base64.encode(hex.from(s));
|
||||
return base64.encode(hex.decode(s));
|
||||
end
|
||||
|
||||
local function base64_to_hex(s)
|
||||
return base64.encode(hex.from(s));
|
||||
return base64.encode(hex.decode(s));
|
||||
end
|
||||
|
||||
local handlers = {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue