A Lua library which provides base2(bitfield), base16(hex), base32(crockford/rfc), base64 decoding and encoding. - LuaDist/basexx
Converts a byte string to a bitfield string. 0, O and o maps to the same value 1, I, i, L and l maps to the same value basexx.to_bit( "ACDC" ) --> 01000001010000110100010001000011 basexx.from_bit( "01000001010000110100010001000011" ) --> ACDC basexx.from_bit( "o1ooooo1o1o...
Converts a byte string to a bitfield string. 0, O and o maps to the same value 1, I, i, L and l maps to the same value basexx.to_bit("ACDC")--> 01000001010000110100010001000011basexx.from_bit("01000001010000110100010001000011")--> ACDCbasexx.from_bit("o1ooooo1o1oooo11")--> ACb...