Expand description
Simple Base-16 (aka hexidecimal) encoding
Structs§
- Character pair representing single byte
- Decoder that transforms pairs of characters into individual decimal bytes
- Hex encoder, implements iterator returning individual byte as pair of characters.
Enums§
- Error happening during decoding
Functions§
- Creates HEX encoded array out of input
- Creates HEX encoded array out of input
- Writes lower case hex into
out
- Writes lower case hex appending to
out
vector - Writes upper case hex into
out
- Writes upper case hex appending to
out
vector - Length required to decode HEX
- Length required to HEX encode
- Decodes hex-encoded
input
intoout
, truncating by its size, if necessary. - Converts hex character pair into underlying byte
- Decodes hex-encoded
input
intoout
, truncating by its size, if necessary.