Expand description

Decoding and encoding of Base 16 a.k.a. hex digits.

The Base 16 encoding is defined in RFC 4648. It really is just a normal hex-encoding using the (case-insensitive) letters ‘A’ to ‘F’ as additional values for the digits.

The module defines the type Decoder which keeps the state necessary for decoding. The various functions offered use such a decoder to decode and encode octets in various forms.

Re-exports

pub use super::base64::DecodeError;

Modules

Serialize and deserialize octets Base 16 encoded or binary.

Structs

A Base 16 decoder.

Functions

Decodes a string with Base 16 encoded data.
Encodes binary data in Base 16 and writes it into a format stream.
Returns a placeholder value that implements Display for encoded data.
Encodes binary data in Base 16 and returns the encoded data as a string.