mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-11 00:31:31 -04:00
Adding From Char(hex) feature
This commit is contained in:
parent
112af3c74b
commit
8b546e61b2
4 changed files with 33 additions and 1 deletions
|
@ -400,6 +400,15 @@ var OperationConfig = {
|
|||
outputType: "string",
|
||||
args: []
|
||||
},
|
||||
"From Char(Hex)": {
|
||||
description: "Converts a hexadecimal byte string back into a its raw value.<br><br>e.g. <code>chr(33)</code> becomes the UTF-8 encoded string <code>!</code>",
|
||||
run: ByteRepr.runFromCharHex,
|
||||
highlight: ByteRepr.highlightFrom,
|
||||
highlightReverse: ByteRepr.highlightTo,
|
||||
inputType: "string",
|
||||
outputType: "string",
|
||||
args: []
|
||||
},
|
||||
"From Hex": {
|
||||
description: "Converts a hexadecimal byte string back into a its raw value.<br><br>e.g. <code>ce 93 ce b5 ce b9 ce ac 20 cf 83 ce bf cf 85 0a</code> becomes the UTF-8 encoded string <code>Γειά σου</code>",
|
||||
run: ByteRepr.runFromHex,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue