mirror of
https://github.com/gchq/CyberChef
synced 2025-01-01 07:18:47 +00:00
Merge branch 'fix-option-in-parse-asn1-hex-string' of https://github.com/mikecat/CyberChef
This commit is contained in:
commit
e97d535ff8
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ class ParseASN1HexString extends Operation {
|
||||||
run(input, args) {
|
run(input, args) {
|
||||||
const [index, truncateLen] = args;
|
const [index, truncateLen] = args;
|
||||||
return r.ASN1HEX.dump(input.replace(/\s/g, "").toLowerCase(), {
|
return r.ASN1HEX.dump(input.replace(/\s/g, "").toLowerCase(), {
|
||||||
"ommitLongOctet": truncateLen
|
"ommit_long_octet": truncateLen
|
||||||
}, index);
|
}, index);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue