mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-02 14:11:02 +01:00
UNIX Format Added for ToHexdump
This commit is contained in:
parent
53a579028c
commit
30bc8dfbe9
@ -39,6 +39,11 @@ class ToHexdump extends Operation {
|
|||||||
"name": "Include final length",
|
"name": "Include final length",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"value": false
|
"value": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "UNIX Format",
|
||||||
|
"type": "boolean",
|
||||||
|
"value": false
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
@ -70,7 +75,7 @@ class ToHexdump extends Operation {
|
|||||||
|
|
||||||
output += lineNo + " " +
|
output += lineNo + " " +
|
||||||
hexa.padEnd(length*(padding+1), " ") +
|
hexa.padEnd(length*(padding+1), " ") +
|
||||||
" |" + Utils.printable(Utils.byteArrayToChars(buff), false, true).padEnd(buff.length, " ") + "|\n";
|
" |" + Utils.printable(Utils.byteArrayToChars(buff), false, args[3]).padEnd(buff.length, " ") + "|\n";
|
||||||
|
|
||||||
if (includeFinalLength && i+buff.length === data.length) {
|
if (includeFinalLength && i+buff.length === data.length) {
|
||||||
output += Utils.hex(i+buff.length, 8) + "\n";
|
output += Utils.hex(i+buff.length, 8) + "\n";
|
||||||
|
Loading…
Reference in New Issue
Block a user