cyberchef 9.50.7 → 9.50.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cyberchef",
3
- "version": "9.50.7",
3
+ "version": "9.50.9",
4
4
  "description": "The Cyber Swiss Army Knife for encryption, encoding, compression and data analysis.",
5
5
  "author": "n1474335 <n1474335@gmail.com>",
6
6
  "homepage": "https://gchq.github.io/CyberChef",
@@ -6925,7 +6925,7 @@
6925
6925
  {
6926
6926
  "name": "Margin (num modules)",
6927
6927
  "type": "number",
6928
- "value": 2,
6928
+ "value": 4,
6929
6929
  "min": 0
6930
6930
  },
6931
6931
  {
@@ -44,7 +44,7 @@ class GenerateQRCode extends Operation {
44
44
  {
45
45
  "name": "Margin (num modules)",
46
46
  "type": "number",
47
- "value": 2,
47
+ "value": 4,
48
48
  "min": 0
49
49
  },
50
50
  {
@@ -46,7 +46,7 @@ class ParseASN1HexString extends Operation {
46
46
  run(input, args) {
47
47
  const [index, truncateLen] = args;
48
48
  return r.ASN1HEX.dump(input.replace(/\s/g, "").toLowerCase(), {
49
- "ommitLongOctet": truncateLen
49
+ "ommit_long_octet": truncateLen
50
50
  }, index);
51
51
  }
52
52