2023-12-28 16:00:30 -07:00
|
|
|
-- Text processing functions.
|
2023-11-16 10:35:54 -07:00
|
|
|
|
|
|
|
local M = {}
|
|
|
|
|
|
|
|
--- Hex encode a string.
|
|
|
|
---
|
|
|
|
--- @param str string String to encode
|
2024-03-16 10:11:42 -07:00
|
|
|
--- @return string : Hex encoded string
|
2023-11-16 10:35:54 -07:00
|
|
|
function M.hexencode(str)
|
|
|
|
local enc = {} ---@type string[]
|
2024-08-17 20:28:03 -07:00
|
|
|
for i = 1, #str do
|
|
|
|
enc[i] = string.format('%02X', str:byte(i, i + 1))
|
2023-11-16 10:35:54 -07:00
|
|
|
end
|
|
|
|
return table.concat(enc)
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Hex decode a string.
|
|
|
|
---
|
|
|
|
--- @param enc string String to decode
|
2024-05-30 17:57:47 -07:00
|
|
|
--- @return string? : Decoded string
|
|
|
|
--- @return string? : Error message, if any
|
2023-11-16 10:35:54 -07:00
|
|
|
function M.hexdecode(enc)
|
2024-05-30 17:57:47 -07:00
|
|
|
if #enc % 2 ~= 0 then
|
|
|
|
return nil, 'string must have an even number of hex characters'
|
|
|
|
end
|
|
|
|
|
2023-11-16 10:35:54 -07:00
|
|
|
local str = {} ---@type string[]
|
|
|
|
for i = 1, #enc, 2 do
|
|
|
|
local n = assert(tonumber(enc:sub(i, i + 1), 16))
|
|
|
|
str[#str + 1] = string.char(n)
|
|
|
|
end
|
2024-05-30 17:57:47 -07:00
|
|
|
return table.concat(str), nil
|
2023-11-16 10:35:54 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
return M
|