cyberchef 9.35.0 → 9.37.0
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/CHANGELOG.md +13 -0
- package/package.json +1 -1
- package/src/core/config/Categories.json +4 -1
- package/src/core/config/OperationConfig.json +1359 -160
- package/src/core/config/modules/Bletchley.mjs +2 -0
- package/src/core/config/modules/Ciphers.mjs +4 -0
- package/src/core/lib/Charts.mjs +2 -1
- package/src/core/lib/SIGABA.mjs +502 -0
- package/src/core/lib/SM4.mjs +331 -0
- package/src/core/operations/AESDecrypt.mjs +19 -2
- package/src/core/operations/Bombe.mjs +3 -0
- package/src/core/operations/Colossus.mjs +3 -0
- package/src/core/operations/DESDecrypt.mjs +13 -3
- package/src/core/operations/Enigma.mjs +3 -0
- package/src/core/operations/GetAllCasings.mjs +1 -1
- package/src/core/operations/Lorenz.mjs +3 -0
- package/src/core/operations/SIGABA.mjs +287 -0
- package/src/core/operations/SM4Decrypt.mjs +88 -0
- package/src/core/operations/SM4Encrypt.mjs +88 -0
- package/src/core/operations/ScatterChart.mjs +1 -1
- package/src/core/operations/SeriesChart.mjs +4 -1
- package/src/core/operations/TripleDESDecrypt.mjs +12 -3
- package/src/core/operations/Typex.mjs +3 -0
- package/src/core/operations/index.mjs +6 -0
- package/src/node/index.mjs +15 -0
- package/tests/node/tests/nodeApi.mjs +1 -1
- package/tests/operations/index.mjs +3 -0
- package/tests/operations/tests/GetAllCasings.mjs +3 -3
- package/tests/operations/tests/SIGABA.mjs +91 -0
- package/tests/operations/tests/SM4.mjs +279 -0
package/CHANGELOG.md
CHANGED
|
@@ -13,6 +13,13 @@ All major and minor version changes will be documented in this file. Details of
|
|
|
13
13
|
|
|
14
14
|
## Details
|
|
15
15
|
|
|
16
|
+
### [9.37.0] - 2022-03-29
|
|
17
|
+
- 'SM4 Encrypt' and 'SM4 Decrypt' operations added [@swesven] | [#1189]
|
|
18
|
+
- NoPadding options added for CBC and ECB modes in AES, DES and Triple DES Decrypt operations [@swesven] | [#1189]
|
|
19
|
+
|
|
20
|
+
### [9.36.0] - 2022-03-29
|
|
21
|
+
- 'SIGABA' operation added [@hettysymes] | [#934]
|
|
22
|
+
|
|
16
23
|
### [9.35.0] - 2022-03-28
|
|
17
24
|
- 'To Base45' and 'From Base45' operations added [@t-8ch] | [#1242]
|
|
18
25
|
|
|
@@ -281,6 +288,8 @@ All major and minor version changes will be documented in this file. Details of
|
|
|
281
288
|
|
|
282
289
|
|
|
283
290
|
|
|
291
|
+
[9.37.0]: https://github.com/gchq/CyberChef/releases/tag/v9.37.0
|
|
292
|
+
[9.36.0]: https://github.com/gchq/CyberChef/releases/tag/v9.36.0
|
|
284
293
|
[9.35.0]: https://github.com/gchq/CyberChef/releases/tag/v9.35.0
|
|
285
294
|
[9.34.0]: https://github.com/gchq/CyberChef/releases/tag/v9.34.0
|
|
286
295
|
[9.33.0]: https://github.com/gchq/CyberChef/releases/tag/v9.33.0
|
|
@@ -399,6 +408,8 @@ All major and minor version changes will be documented in this file. Details of
|
|
|
399
408
|
[@Danh4]: https://github.com/Danh4
|
|
400
409
|
[@john19696]: https://github.com/john19696
|
|
401
410
|
[@t-8ch]: https://github.com/t-8ch
|
|
411
|
+
[@hettysymes]: https://github.com/hettysymes
|
|
412
|
+
[@swesven]: https://github.com/swesven
|
|
402
413
|
|
|
403
414
|
[8ad18b]: https://github.com/gchq/CyberChef/commit/8ad18bc7db6d9ff184ba3518686293a7685bf7b7
|
|
404
415
|
[9a33498]: https://github.com/gchq/CyberChef/commit/9a33498fed26a8df9c9f35f39a78a174bf50a513
|
|
@@ -473,6 +484,7 @@ All major and minor version changes will be documented in this file. Details of
|
|
|
473
484
|
[#865]: https://github.com/gchq/CyberChef/pull/865
|
|
474
485
|
[#912]: https://github.com/gchq/CyberChef/pull/912
|
|
475
486
|
[#917]: https://github.com/gchq/CyberChef/pull/917
|
|
487
|
+
[#934]: https://github.com/gchq/CyberChef/pull/934
|
|
476
488
|
[#948]: https://github.com/gchq/CyberChef/pull/948
|
|
477
489
|
[#952]: https://github.com/gchq/CyberChef/pull/952
|
|
478
490
|
[#965]: https://github.com/gchq/CyberChef/pull/965
|
|
@@ -486,6 +498,7 @@ All major and minor version changes will be documented in this file. Details of
|
|
|
486
498
|
[#1049]: https://github.com/gchq/CyberChef/pull/1049
|
|
487
499
|
[#1065]: https://github.com/gchq/CyberChef/pull/1065
|
|
488
500
|
[#1083]: https://github.com/gchq/CyberChef/pull/1083
|
|
501
|
+
[#1189]: https://github.com/gchq/CyberChef/pull/1189
|
|
489
502
|
[#1242]: https://github.com/gchq/CyberChef/pull/1242
|
|
490
503
|
[#1244]: https://github.com/gchq/CyberChef/pull/1244
|
|
491
504
|
[#1313]: https://github.com/gchq/CyberChef/pull/1313
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cyberchef",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.37.0",
|
|
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",
|
|
@@ -83,6 +83,8 @@
|
|
|
83
83
|
"RC2 Decrypt",
|
|
84
84
|
"RC4",
|
|
85
85
|
"RC4 Drop",
|
|
86
|
+
"SM4 Encrypt",
|
|
87
|
+
"SM4 Decrypt",
|
|
86
88
|
"ROT13",
|
|
87
89
|
"ROT47",
|
|
88
90
|
"XOR",
|
|
@@ -120,7 +122,8 @@
|
|
|
120
122
|
"Multiple Bombe",
|
|
121
123
|
"Typex",
|
|
122
124
|
"Lorenz",
|
|
123
|
-
"Colossus"
|
|
125
|
+
"Colossus",
|
|
126
|
+
"SIGABA"
|
|
124
127
|
]
|
|
125
128
|
},
|
|
126
129
|
{
|