We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the solution you'd like In the hexdump output block, add a groupings option which groups the hex side in groupings of X.
Additional context This is thought out at G33kW33k, and putting this here in case it gets forgotten, and for tracking.
Currently, (and by default with this new option) the groupings are of size 1:
00000000 54 68 69 73 20 69 73 20 61 6e 20 65 78 61 6d 70 |This is an examp| 00000010 6c 65 20 6f 66 20 67 72 6f 75 70 69 6e 67 73 |le of groupings|
With a grouping of say 4 the output would look like:
00000000 54686973 20697320 616e2065 78616d70 |This is an examp| 00000010 6c65206f 66206772 6f757069 6e6773 |le of groupings|
This makes it easier when decoding protocols, where most of the encoded details are of the same fixed length.
The text was updated successfully, but these errors were encountered:
[gchq#913] added groupings to hex dump
150e66f
Revert "[gchq#913] added groupings to hex dump" and move changes to a…
44cf916
… new PR This reverts commit 150e66f.
No branches or pull requests
Describe the solution you'd like
In the hexdump output block, add a groupings option which groups the hex side in groupings of X.
Additional context
This is thought out at G33kW33k, and putting this here in case it gets forgotten, and for tracking.
Currently, (and by default with this new option) the groupings are of size 1:
With a grouping of say 4 the output would look like:
This makes it easier when decoding protocols, where most of the encoded details are of the same fixed length.
The text was updated successfully, but these errors were encountered: