Crate qdhex

source ·
Expand description

This crate provides functions to create human readable hex dumps of binary data.

Functions

  • Create a simple hex dump of the given data. The dump contains pairs of hex digits, separated by spaces, no line breaks, decorations, etc.
  • Create a simple hex dump of the given data. The dump contains pairs of hex digits, separated by spaces, no line breaks, decorations, etc.
  • Create a formatted multi-line hex dump of the given data. Dump lines are prefixed with the given offset. Each line contains up to 16 bytes, separated by spaces, followed by a space and the ASCII representation.
  • Create a formatted multi-line hex dump of the given data. Dump lines are prefixed with the given offset. Each line contains up to 16 bytes, separated by spaces, followed by a space and the ASCII representation.
  • Write a simple hex dump of the given data to the given target. The dump contains pairs of hex digits, separated by spaces, no line breaks, decorations, etc.
  • Write a formatted multi-line hex dump of the given data to the given target. Dump lines are prefixed with the given offset. Each line contains up to 16 bytes, separated by spaces, followed by a space and the ASCII representation.