diff options
author | Matthew Wild <mwild1@gmail.com> | 2015-01-21 01:29:00 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2015-01-21 01:29:00 +0000 |
commit | cd0dd3f92b02d855c98701792c179d02ad12bf24 (patch) | |
tree | a2ed9fcc1c1496bdcbdf1da40e868aa4d50246fa /util/hex.lua | |
parent | 6591bd9db584bf6c5b8920c4438cd087bbfefce3 (diff) | |
parent | 5723bad906dcbef98eb1cdc196675a7a526f97cc (diff) | |
download | prosody-cd0dd3f92b02d855c98701792c179d02ad12bf24.tar.gz prosody-cd0dd3f92b02d855c98701792c179d02ad12bf24.zip |
Merge 0.10->trunk
Diffstat (limited to 'util/hex.lua')
-rw-r--r-- | util/hex.lua | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/util/hex.lua b/util/hex.lua index b21ee17e..e41f4863 100644 --- a/util/hex.lua +++ b/util/hex.lua @@ -1,19 +1,25 @@ local s_char = string.char; +local s_format = string.format; +local s_gsub = string.gsub; -local function char_to_hex(c) - return ("%02x"):format(c:byte()) -end +local char_to_hex = {}; +local hex_to_char = {}; -local function hex_to_char(h) - return s_char(tonumber(h, 16)); +do + local char, hex; + for i = 0,255 do + char, hex = s_char(i), s_format("%02x", i); + char_to_hex[char] = hex; + hex_to_char[hex] = char; + end end local function to(s) - return s:gsub(".", char_to_hex); + return (s_gsub(s, ".", char_to_hex)); end local function from(s) - return s:gsub("..", hex_to_char); + return (s_gsub(s, "..", hex_to_char)); end return { to = to, from = from } |