cyberchef 9.35.0 → 9.36.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 +6 -0
- package/package.json +1 -1
- package/src/core/config/Categories.json +2 -1
- package/src/core/config/OperationConfig.json +1059 -0
- package/src/core/config/modules/Bletchley.mjs +2 -0
- package/src/core/lib/Charts.mjs +2 -1
- package/src/core/lib/SIGABA.mjs +502 -0
- package/src/core/operations/Bombe.mjs +3 -0
- package/src/core/operations/Colossus.mjs +3 -0
- package/src/core/operations/Enigma.mjs +3 -0
- package/src/core/operations/Lorenz.mjs +3 -0
- package/src/core/operations/SIGABA.mjs +287 -0
- package/src/core/operations/ScatterChart.mjs +1 -1
- package/src/core/operations/SeriesChart.mjs +4 -1
- package/src/core/operations/Typex.mjs +3 -0
- package/src/core/operations/index.mjs +2 -0
- package/src/node/index.mjs +5 -0
- package/tests/operations/index.mjs +2 -0
- package/tests/operations/tests/SIGABA.mjs +91 -0
package/CHANGELOG.md
CHANGED
|
@@ -13,6 +13,9 @@ All major and minor version changes will be documented in this file. Details of
|
|
|
13
13
|
|
|
14
14
|
## Details
|
|
15
15
|
|
|
16
|
+
### [9.36.0] - 2022-03-29
|
|
17
|
+
- 'SIGABA' operation added [@hettysymes] | [#934]
|
|
18
|
+
|
|
16
19
|
### [9.35.0] - 2022-03-28
|
|
17
20
|
- 'To Base45' and 'From Base45' operations added [@t-8ch] | [#1242]
|
|
18
21
|
|
|
@@ -281,6 +284,7 @@ All major and minor version changes will be documented in this file. Details of
|
|
|
281
284
|
|
|
282
285
|
|
|
283
286
|
|
|
287
|
+
[9.36.0]: https://github.com/gchq/CyberChef/releases/tag/v9.36.0
|
|
284
288
|
[9.35.0]: https://github.com/gchq/CyberChef/releases/tag/v9.35.0
|
|
285
289
|
[9.34.0]: https://github.com/gchq/CyberChef/releases/tag/v9.34.0
|
|
286
290
|
[9.33.0]: https://github.com/gchq/CyberChef/releases/tag/v9.33.0
|
|
@@ -399,6 +403,7 @@ All major and minor version changes will be documented in this file. Details of
|
|
|
399
403
|
[@Danh4]: https://github.com/Danh4
|
|
400
404
|
[@john19696]: https://github.com/john19696
|
|
401
405
|
[@t-8ch]: https://github.com/t-8ch
|
|
406
|
+
[@hettysymes]: https://github.com/hettysymes
|
|
402
407
|
|
|
403
408
|
[8ad18b]: https://github.com/gchq/CyberChef/commit/8ad18bc7db6d9ff184ba3518686293a7685bf7b7
|
|
404
409
|
[9a33498]: https://github.com/gchq/CyberChef/commit/9a33498fed26a8df9c9f35f39a78a174bf50a513
|
|
@@ -473,6 +478,7 @@ All major and minor version changes will be documented in this file. Details of
|
|
|
473
478
|
[#865]: https://github.com/gchq/CyberChef/pull/865
|
|
474
479
|
[#912]: https://github.com/gchq/CyberChef/pull/912
|
|
475
480
|
[#917]: https://github.com/gchq/CyberChef/pull/917
|
|
481
|
+
[#934]: https://github.com/gchq/CyberChef/pull/934
|
|
476
482
|
[#948]: https://github.com/gchq/CyberChef/pull/948
|
|
477
483
|
[#952]: https://github.com/gchq/CyberChef/pull/952
|
|
478
484
|
[#965]: https://github.com/gchq/CyberChef/pull/965
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cyberchef",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.36.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",
|