2
0
mirror of https://github.com/gchq/CyberChef synced 2025-12-05 23:53:27 +00:00

Merge branch 'use-lowercase-for-asn1' of https://github.com/mikecat/CyberChef

This commit is contained in:
n1474335
2022-11-25 11:55:19 +00:00
2 changed files with 2 additions and 2 deletions

View File

@@ -45,7 +45,7 @@ class ParseASN1HexString extends Operation {
*/
run(input, args) {
const [index, truncateLen] = args;
return r.ASN1HEX.dump(input.replace(/\s/g, ""), {
return r.ASN1HEX.dump(input.replace(/\s/g, "").toLowerCase(), {
"ommitLongOctet": truncateLen
}, index);
}

View File

@@ -59,7 +59,7 @@ class ParseX509Certificate extends Operation {
switch (inputFormat) {
case "DER Hex":
input = input.replace(/\s/g, "");
input = input.replace(/\s/g, "").toLowerCase();
cert.readCertHex(input);
break;
case "PEM":