util.hex: Deprecate to/from in favour of encode/decode, for consistency!

This commit is contained in:
Matthew Wild 2022-03-04 15:22:45 +00:00
parent fe56effa55
commit ab835fed13
8 changed files with 31 additions and 27 deletions

View file

@ -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 = {};