Expand description
various helper functions.
Functionsยง
- attempt to convert a byte value into a pair of uppercase hexadecimal values.
- Helper function which takes a mutable slice of expected byte-length and attempts to parse an immutable slice of bytes as hexadecimal characters. Returns an error if
src
is not exactly twice the size ofbuf
, or if any non-hexadecimal characters are found. - convert a byte value in range
0x00
to0x0f
to its corresponding lowercase hexadecimal character. - convert a byte value in range
0x00
to0x0f
to its corresponding uppercase hexadecimal character. - attemt to convert a pair of bytes from a hexadecimal string into their underlying byte representation.
- write hex to buffer.
- write uppercase hex to buffer.
- convert a byte from a hex string to its numeric value. use the
tobyte
function to convert a pair of hex characters to their actual byte representation. - Helper function which attempts to convert an immutable set of bytes into hexadecimal characters and write them to some destination.
- Helper function which attempts to convert an immutable set of bytes into capital hexadecimal characters and write them to some destination.