Module va_toolbox.hexdumps
This module contains support for hexdumps and diffs.
Functions
Name | Description |
---|---|
toDiffDump(ra, rb, adesc, bdesc)
|
Print the difference between two array |
toPrettyHexDump(edata, offset, prefix, chunksize)
|
Converts the given array of type T to a hex dump string.
After a configurable number of bytes of hexadecimal numbers, the same bytes are shown as characters,
or '.' if not printable. This similar to the hexdump CLI command.
|
toRawDataDiff(va, vb, namea, nameb, header)
|
Compares two arrays of raw byte data and produces a detailed comparison report. |