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
|
@@ -115,7 +115,7 @@
|
|
|
115
115
|
},
|
|
116
116
|
"AES Decrypt": {
|
|
117
117
|
"module": "Ciphers",
|
|
118
|
-
"description": "Advanced Encryption Standard (AES) is a U.S. Federal Information Processing Standard (FIPS). It was selected after a 5-year process where 15 competing designs were evaluated.<br><br><b>Key:</b> The following algorithms will be used based on the size of the key:<ul><li>16 bytes = AES-128</li><li>24 bytes = AES-192</li><li>32 bytes = AES-256</li></ul><br><br><b>IV:</b> The Initialization Vector should be 16 bytes long. If not entered, it will default to 16 null bytes.<br><br><b>Padding:</b> In CBC and ECB mode, PKCS#7 padding will be used.<br><br><b>GCM Tag:</b> This field is ignored unless 'GCM' mode is used.",
|
|
118
|
+
"description": "Advanced Encryption Standard (AES) is a U.S. Federal Information Processing Standard (FIPS). It was selected after a 5-year process where 15 competing designs were evaluated.<br><br><b>Key:</b> The following algorithms will be used based on the size of the key:<ul><li>16 bytes = AES-128</li><li>24 bytes = AES-192</li><li>32 bytes = AES-256</li></ul><br><br><b>IV:</b> The Initialization Vector should be 16 bytes long. If not entered, it will default to 16 null bytes.<br><br><b>Padding:</b> In CBC and ECB mode, PKCS#7 padding will be used as a default.<br><br><b>GCM Tag:</b> This field is ignored unless 'GCM' mode is used.",
|
|
119
119
|
"infoURL": "https://wikipedia.org/wiki/Advanced_Encryption_Standard",
|
|
120
120
|
"inputType": "string",
|
|
121
121
|
"outputType": "string",
|
|
@@ -189,6 +189,20 @@
|
|
|
189
189
|
5,
|
|
190
190
|
6
|
|
191
191
|
]
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"name": "CBC/NoPadding",
|
|
195
|
+
"off": [
|
|
196
|
+
5,
|
|
197
|
+
6
|
|
198
|
+
]
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"name": "ECB/NoPadding",
|
|
202
|
+
"off": [
|
|
203
|
+
5,
|
|
204
|
+
6
|
|
205
|
+
]
|
|
192
206
|
}
|
|
193
207
|
]
|
|
194
208
|
},
|
|
@@ -3378,7 +3392,7 @@
|
|
|
3378
3392
|
},
|
|
3379
3393
|
"DES Decrypt": {
|
|
3380
3394
|
"module": "Ciphers",
|
|
3381
|
-
"description": "DES is a previously dominant algorithm for encryption, and was published as an official U.S. Federal Information Processing Standard (FIPS). It is now considered to be insecure due to its small key size.<br><br><b>Key:</b> DES uses a key length of 8 bytes (64 bits).<br>Triple DES uses a key length of 24 bytes (192 bits).<br><br><b>IV:</b> The Initialization Vector should be 8 bytes long. If not entered, it will default to 8 null bytes.<br><br><b>Padding:</b> In CBC and ECB mode, PKCS#7 padding will be used.",
|
|
3395
|
+
"description": "DES is a previously dominant algorithm for encryption, and was published as an official U.S. Federal Information Processing Standard (FIPS). It is now considered to be insecure due to its small key size.<br><br><b>Key:</b> DES uses a key length of 8 bytes (64 bits).<br>Triple DES uses a key length of 24 bytes (192 bits).<br><br><b>IV:</b> The Initialization Vector should be 8 bytes long. If not entered, it will default to 8 null bytes.<br><br><b>Padding:</b> In CBC and ECB mode, PKCS#7 padding will be used as a default.",
|
|
3382
3396
|
"infoURL": "https://wikipedia.org/wiki/Data_Encryption_Standard",
|
|
3383
3397
|
"inputType": "string",
|
|
3384
3398
|
"outputType": "string",
|
|
@@ -3415,7 +3429,9 @@
|
|
|
3415
3429
|
"CFB",
|
|
3416
3430
|
"OFB",
|
|
3417
3431
|
"CTR",
|
|
3418
|
-
"ECB"
|
|
3432
|
+
"ECB",
|
|
3433
|
+
"CBC/NoPadding",
|
|
3434
|
+
"ECB/NoPadding"
|
|
3419
3435
|
]
|
|
3420
3436
|
},
|
|
3421
3437
|
{
|
|
@@ -10793,185 +10809,1366 @@
|
|
|
10793
10809
|
}
|
|
10794
10810
|
]
|
|
10795
10811
|
},
|
|
10796
|
-
"
|
|
10797
|
-
"module": "
|
|
10798
|
-
"description": "
|
|
10799
|
-
"infoURL": "https://wikipedia.org/wiki/
|
|
10800
|
-
"inputType": "ArrayBuffer",
|
|
10801
|
-
"outputType": "string",
|
|
10802
|
-
"flowControl": false,
|
|
10803
|
-
"manualBake": false,
|
|
10804
|
-
"args": [
|
|
10805
|
-
{
|
|
10806
|
-
"name": "Length",
|
|
10807
|
-
"type": "number",
|
|
10808
|
-
"value": 256
|
|
10809
|
-
},
|
|
10810
|
-
{
|
|
10811
|
-
"name": "Rounds",
|
|
10812
|
-
"type": "number",
|
|
10813
|
-
"value": 64,
|
|
10814
|
-
"min": 16
|
|
10815
|
-
}
|
|
10816
|
-
]
|
|
10817
|
-
},
|
|
10818
|
-
"SQL Beautify": {
|
|
10819
|
-
"module": "Code",
|
|
10820
|
-
"description": "Indents and prettifies Structured Query Language (SQL) code.",
|
|
10821
|
-
"infoURL": null,
|
|
10822
|
-
"inputType": "string",
|
|
10823
|
-
"outputType": "string",
|
|
10824
|
-
"flowControl": false,
|
|
10825
|
-
"manualBake": false,
|
|
10826
|
-
"args": [
|
|
10827
|
-
{
|
|
10828
|
-
"name": "Indent string",
|
|
10829
|
-
"type": "binaryShortString",
|
|
10830
|
-
"value": "\\t"
|
|
10831
|
-
}
|
|
10832
|
-
]
|
|
10833
|
-
},
|
|
10834
|
-
"SQL Minify": {
|
|
10835
|
-
"module": "Code",
|
|
10836
|
-
"description": "Compresses Structured Query Language (SQL) code.",
|
|
10837
|
-
"infoURL": null,
|
|
10838
|
-
"inputType": "string",
|
|
10839
|
-
"outputType": "string",
|
|
10840
|
-
"flowControl": false,
|
|
10841
|
-
"manualBake": false,
|
|
10842
|
-
"args": []
|
|
10843
|
-
},
|
|
10844
|
-
"SSDEEP": {
|
|
10845
|
-
"module": "Crypto",
|
|
10846
|
-
"description": "SSDEEP is a program for computing context triggered piecewise hashes (CTPH). Also called fuzzy hashes, CTPH can match inputs that have homologies. Such inputs have sequences of identical bytes in the same order, although bytes in between these sequences may be different in both content and length.<br><br>SSDEEP hashes are now widely used for simple identification purposes (e.g. the 'Basic Properties' section in VirusTotal). Although 'better' fuzzy hashes are available, SSDEEP is still one of the primary choices because of its speed and being a de facto standard.<br><br>This operation is fundamentally the same as the CTPH operation, however their outputs differ in format.",
|
|
10847
|
-
"infoURL": "https://forensicswiki.xyz/wiki/index.php?title=Ssdeep",
|
|
10812
|
+
"SIGABA": {
|
|
10813
|
+
"module": "Bletchley",
|
|
10814
|
+
"description": "Encipher/decipher with the WW2 SIGABA machine. <br><br>SIGABA, otherwise known as ECM Mark II, was used by the United States for message encryption during WW2 up to the 1950s. It was developed in the 1930s by the US Army and Navy, and has up to this day never been broken. Consisting of 15 rotors: 5 cipher rotors and 10 rotors (5 control rotors and 5 index rotors) controlling the stepping of the cipher rotors, the rotor stepping for SIGABA is much more complex than other rotor machines of its time, such as Enigma. All example rotor wirings are random example sets.<br><br>To configure rotor wirings, for the cipher and control rotors enter a string of letters which map from A to Z, and for the index rotors enter a sequence of numbers which map from 0 to 9. Note that encryption is not the same as decryption, so first choose the desired mode. <br><br> Note: Whilst this has been tested against other software emulators, it has not been tested against hardware.",
|
|
10815
|
+
"infoURL": "https://wikipedia.org/wiki/SIGABA",
|
|
10848
10816
|
"inputType": "string",
|
|
10849
10817
|
"outputType": "string",
|
|
10850
10818
|
"flowControl": false,
|
|
10851
10819
|
"manualBake": false,
|
|
10852
|
-
"args": []
|
|
10853
|
-
},
|
|
10854
|
-
"SUB": {
|
|
10855
|
-
"module": "Default",
|
|
10856
|
-
"description": "SUB the input with the given key (e.g. <code>fe023da5</code>), MOD 255",
|
|
10857
|
-
"infoURL": "https://wikipedia.org/wiki/Bitwise_operation#Bitwise_operators",
|
|
10858
|
-
"inputType": "byteArray",
|
|
10859
|
-
"outputType": "byteArray",
|
|
10860
|
-
"flowControl": false,
|
|
10861
|
-
"manualBake": false,
|
|
10862
10820
|
"args": [
|
|
10863
10821
|
{
|
|
10864
|
-
"name": "
|
|
10865
|
-
"type": "
|
|
10866
|
-
"value":
|
|
10867
|
-
|
|
10868
|
-
|
|
10869
|
-
|
|
10870
|
-
|
|
10871
|
-
|
|
10872
|
-
|
|
10873
|
-
|
|
10822
|
+
"name": "1st (left-hand) cipher rotor",
|
|
10823
|
+
"type": "editableOption",
|
|
10824
|
+
"value": [
|
|
10825
|
+
{
|
|
10826
|
+
"name": "Example 1",
|
|
10827
|
+
"value": "SRGWANHPJZFXVIDQCEUKBYOLMT"
|
|
10828
|
+
},
|
|
10829
|
+
{
|
|
10830
|
+
"name": "Example 2",
|
|
10831
|
+
"value": "THQEFSAZVKJYULBODCPXNIMWRG"
|
|
10832
|
+
},
|
|
10833
|
+
{
|
|
10834
|
+
"name": "Example 3",
|
|
10835
|
+
"value": "XDTUYLEVFNQZBPOGIRCSMHWKAJ"
|
|
10836
|
+
},
|
|
10837
|
+
{
|
|
10838
|
+
"name": "Example 4",
|
|
10839
|
+
"value": "LOHDMCWUPSTNGVXYFJREQIKBZA"
|
|
10840
|
+
},
|
|
10841
|
+
{
|
|
10842
|
+
"name": "Example 5",
|
|
10843
|
+
"value": "ERXWNZQIJYLVOFUMSGHTCKPBDA"
|
|
10844
|
+
},
|
|
10845
|
+
{
|
|
10846
|
+
"name": "Example 6",
|
|
10847
|
+
"value": "FQECYHJIOUMDZVPSLKRTGWXBAN"
|
|
10848
|
+
},
|
|
10849
|
+
{
|
|
10850
|
+
"name": "Example 7",
|
|
10851
|
+
"value": "TBYIUMKZDJSOPEWXVANHLCFQGR"
|
|
10852
|
+
},
|
|
10853
|
+
{
|
|
10854
|
+
"name": "Example 8",
|
|
10855
|
+
"value": "QZUPDTFNYIAOMLEBWJXCGHKRSV"
|
|
10856
|
+
},
|
|
10857
|
+
{
|
|
10858
|
+
"name": "Example 9",
|
|
10859
|
+
"value": "CZWNHEMPOVXLKRSIDGJFYBTQAU"
|
|
10860
|
+
},
|
|
10861
|
+
{
|
|
10862
|
+
"name": "Example 10",
|
|
10863
|
+
"value": "ENPXJVKYQBFZTICAGMOHWRLDUS"
|
|
10864
|
+
}
|
|
10874
10865
|
]
|
|
10875
|
-
}
|
|
10876
|
-
]
|
|
10877
|
-
},
|
|
10878
|
-
"Scan for Embedded Files": {
|
|
10879
|
-
"module": "Default",
|
|
10880
|
-
"description": "Scans the data for potential embedded files by looking for magic bytes at all offsets. This operation is prone to false positives.<br><br>WARNING: Files over about 100KB in size will take a VERY long time to process.",
|
|
10881
|
-
"infoURL": "https://wikipedia.org/wiki/List_of_file_signatures",
|
|
10882
|
-
"inputType": "ArrayBuffer",
|
|
10883
|
-
"outputType": "string",
|
|
10884
|
-
"flowControl": false,
|
|
10885
|
-
"manualBake": false,
|
|
10886
|
-
"args": [
|
|
10887
|
-
{
|
|
10888
|
-
"name": "Images",
|
|
10889
|
-
"type": "boolean",
|
|
10890
|
-
"value": true
|
|
10891
|
-
},
|
|
10892
|
-
{
|
|
10893
|
-
"name": "Video",
|
|
10894
|
-
"type": "boolean",
|
|
10895
|
-
"value": true
|
|
10896
|
-
},
|
|
10897
|
-
{
|
|
10898
|
-
"name": "Audio",
|
|
10899
|
-
"type": "boolean",
|
|
10900
|
-
"value": true
|
|
10901
|
-
},
|
|
10902
|
-
{
|
|
10903
|
-
"name": "Documents",
|
|
10904
|
-
"type": "boolean",
|
|
10905
|
-
"value": true
|
|
10906
|
-
},
|
|
10907
|
-
{
|
|
10908
|
-
"name": "Applications",
|
|
10909
|
-
"type": "boolean",
|
|
10910
|
-
"value": true
|
|
10911
10866
|
},
|
|
10912
10867
|
{
|
|
10913
|
-
"name": "
|
|
10914
|
-
"type": "boolean",
|
|
10915
|
-
"value": true
|
|
10916
|
-
},
|
|
10917
|
-
{
|
|
10918
|
-
"name": "Miscellaneous",
|
|
10868
|
+
"name": "1st cipher rotor reversed",
|
|
10919
10869
|
"type": "boolean",
|
|
10920
10870
|
"value": false
|
|
10921
|
-
}
|
|
10922
|
-
]
|
|
10923
|
-
},
|
|
10924
|
-
"Scatter chart": {
|
|
10925
|
-
"module": "Charts",
|
|
10926
|
-
"description": "Plots two-variable data as single points on a graph.",
|
|
10927
|
-
"infoURL": "https://wikipedia.org/wiki/Scatter_plot",
|
|
10928
|
-
"inputType": "string",
|
|
10929
|
-
"outputType": "html",
|
|
10930
|
-
"flowControl": false,
|
|
10931
|
-
"manualBake": false,
|
|
10932
|
-
"args": [
|
|
10871
|
+
},
|
|
10933
10872
|
{
|
|
10934
|
-
"name": "
|
|
10873
|
+
"name": "1st cipher rotor intial value",
|
|
10935
10874
|
"type": "option",
|
|
10936
10875
|
"value": [
|
|
10937
|
-
"
|
|
10938
|
-
"
|
|
10876
|
+
"A",
|
|
10877
|
+
"B",
|
|
10878
|
+
"C",
|
|
10879
|
+
"D",
|
|
10880
|
+
"E",
|
|
10881
|
+
"F",
|
|
10882
|
+
"G",
|
|
10883
|
+
"H",
|
|
10884
|
+
"I",
|
|
10885
|
+
"J",
|
|
10886
|
+
"K",
|
|
10887
|
+
"L",
|
|
10888
|
+
"M",
|
|
10889
|
+
"N",
|
|
10890
|
+
"O",
|
|
10891
|
+
"P",
|
|
10892
|
+
"Q",
|
|
10893
|
+
"R",
|
|
10894
|
+
"S",
|
|
10895
|
+
"T",
|
|
10896
|
+
"U",
|
|
10897
|
+
"V",
|
|
10898
|
+
"W",
|
|
10899
|
+
"X",
|
|
10900
|
+
"Y",
|
|
10901
|
+
"Z"
|
|
10939
10902
|
]
|
|
10940
10903
|
},
|
|
10941
10904
|
{
|
|
10942
|
-
"name": "
|
|
10943
|
-
"type": "
|
|
10905
|
+
"name": "2nd cipher rotor",
|
|
10906
|
+
"type": "editableOption",
|
|
10944
10907
|
"value": [
|
|
10945
|
-
|
|
10946
|
-
|
|
10947
|
-
|
|
10948
|
-
|
|
10949
|
-
|
|
10908
|
+
{
|
|
10909
|
+
"name": "Example 1",
|
|
10910
|
+
"value": "SRGWANHPJZFXVIDQCEUKBYOLMT"
|
|
10911
|
+
},
|
|
10912
|
+
{
|
|
10913
|
+
"name": "Example 2",
|
|
10914
|
+
"value": "THQEFSAZVKJYULBODCPXNIMWRG"
|
|
10915
|
+
},
|
|
10916
|
+
{
|
|
10917
|
+
"name": "Example 3",
|
|
10918
|
+
"value": "XDTUYLEVFNQZBPOGIRCSMHWKAJ"
|
|
10919
|
+
},
|
|
10920
|
+
{
|
|
10921
|
+
"name": "Example 4",
|
|
10922
|
+
"value": "LOHDMCWUPSTNGVXYFJREQIKBZA"
|
|
10923
|
+
},
|
|
10924
|
+
{
|
|
10925
|
+
"name": "Example 5",
|
|
10926
|
+
"value": "ERXWNZQIJYLVOFUMSGHTCKPBDA"
|
|
10927
|
+
},
|
|
10928
|
+
{
|
|
10929
|
+
"name": "Example 6",
|
|
10930
|
+
"value": "FQECYHJIOUMDZVPSLKRTGWXBAN"
|
|
10931
|
+
},
|
|
10932
|
+
{
|
|
10933
|
+
"name": "Example 7",
|
|
10934
|
+
"value": "TBYIUMKZDJSOPEWXVANHLCFQGR"
|
|
10935
|
+
},
|
|
10936
|
+
{
|
|
10937
|
+
"name": "Example 8",
|
|
10938
|
+
"value": "QZUPDTFNYIAOMLEBWJXCGHKRSV"
|
|
10939
|
+
},
|
|
10940
|
+
{
|
|
10941
|
+
"name": "Example 9",
|
|
10942
|
+
"value": "CZWNHEMPOVXLKRSIDGJFYBTQAU"
|
|
10943
|
+
},
|
|
10944
|
+
{
|
|
10945
|
+
"name": "Example 10",
|
|
10946
|
+
"value": "ENPXJVKYQBFZTICAGMOHWRLDUS"
|
|
10947
|
+
}
|
|
10950
10948
|
]
|
|
10951
10949
|
},
|
|
10952
10950
|
{
|
|
10953
|
-
"name": "
|
|
10951
|
+
"name": "2nd cipher rotor reversed",
|
|
10954
10952
|
"type": "boolean",
|
|
10955
|
-
"value":
|
|
10956
|
-
},
|
|
10957
|
-
{
|
|
10958
|
-
"name": "X label",
|
|
10959
|
-
"type": "string",
|
|
10960
|
-
"value": ""
|
|
10961
|
-
},
|
|
10962
|
-
{
|
|
10963
|
-
"name": "Y label",
|
|
10964
|
-
"type": "string",
|
|
10965
|
-
"value": ""
|
|
10966
|
-
},
|
|
10967
|
-
{
|
|
10968
|
-
"name": "Colour",
|
|
10969
|
-
"type": "string",
|
|
10970
|
-
"value": "black"
|
|
10953
|
+
"value": false
|
|
10971
10954
|
},
|
|
10972
10955
|
{
|
|
10973
|
-
"name": "
|
|
10974
|
-
"type": "
|
|
10956
|
+
"name": "2nd cipher rotor intial value",
|
|
10957
|
+
"type": "option",
|
|
10958
|
+
"value": [
|
|
10959
|
+
"A",
|
|
10960
|
+
"B",
|
|
10961
|
+
"C",
|
|
10962
|
+
"D",
|
|
10963
|
+
"E",
|
|
10964
|
+
"F",
|
|
10965
|
+
"G",
|
|
10966
|
+
"H",
|
|
10967
|
+
"I",
|
|
10968
|
+
"J",
|
|
10969
|
+
"K",
|
|
10970
|
+
"L",
|
|
10971
|
+
"M",
|
|
10972
|
+
"N",
|
|
10973
|
+
"O",
|
|
10974
|
+
"P",
|
|
10975
|
+
"Q",
|
|
10976
|
+
"R",
|
|
10977
|
+
"S",
|
|
10978
|
+
"T",
|
|
10979
|
+
"U",
|
|
10980
|
+
"V",
|
|
10981
|
+
"W",
|
|
10982
|
+
"X",
|
|
10983
|
+
"Y",
|
|
10984
|
+
"Z"
|
|
10985
|
+
]
|
|
10986
|
+
},
|
|
10987
|
+
{
|
|
10988
|
+
"name": "3rd (middle) cipher rotor",
|
|
10989
|
+
"type": "editableOption",
|
|
10990
|
+
"value": [
|
|
10991
|
+
{
|
|
10992
|
+
"name": "Example 1",
|
|
10993
|
+
"value": "SRGWANHPJZFXVIDQCEUKBYOLMT"
|
|
10994
|
+
},
|
|
10995
|
+
{
|
|
10996
|
+
"name": "Example 2",
|
|
10997
|
+
"value": "THQEFSAZVKJYULBODCPXNIMWRG"
|
|
10998
|
+
},
|
|
10999
|
+
{
|
|
11000
|
+
"name": "Example 3",
|
|
11001
|
+
"value": "XDTUYLEVFNQZBPOGIRCSMHWKAJ"
|
|
11002
|
+
},
|
|
11003
|
+
{
|
|
11004
|
+
"name": "Example 4",
|
|
11005
|
+
"value": "LOHDMCWUPSTNGVXYFJREQIKBZA"
|
|
11006
|
+
},
|
|
11007
|
+
{
|
|
11008
|
+
"name": "Example 5",
|
|
11009
|
+
"value": "ERXWNZQIJYLVOFUMSGHTCKPBDA"
|
|
11010
|
+
},
|
|
11011
|
+
{
|
|
11012
|
+
"name": "Example 6",
|
|
11013
|
+
"value": "FQECYHJIOUMDZVPSLKRTGWXBAN"
|
|
11014
|
+
},
|
|
11015
|
+
{
|
|
11016
|
+
"name": "Example 7",
|
|
11017
|
+
"value": "TBYIUMKZDJSOPEWXVANHLCFQGR"
|
|
11018
|
+
},
|
|
11019
|
+
{
|
|
11020
|
+
"name": "Example 8",
|
|
11021
|
+
"value": "QZUPDTFNYIAOMLEBWJXCGHKRSV"
|
|
11022
|
+
},
|
|
11023
|
+
{
|
|
11024
|
+
"name": "Example 9",
|
|
11025
|
+
"value": "CZWNHEMPOVXLKRSIDGJFYBTQAU"
|
|
11026
|
+
},
|
|
11027
|
+
{
|
|
11028
|
+
"name": "Example 10",
|
|
11029
|
+
"value": "ENPXJVKYQBFZTICAGMOHWRLDUS"
|
|
11030
|
+
}
|
|
11031
|
+
]
|
|
11032
|
+
},
|
|
11033
|
+
{
|
|
11034
|
+
"name": "3rd cipher rotor reversed",
|
|
11035
|
+
"type": "boolean",
|
|
11036
|
+
"value": false
|
|
11037
|
+
},
|
|
11038
|
+
{
|
|
11039
|
+
"name": "3rd cipher rotor intial value",
|
|
11040
|
+
"type": "option",
|
|
11041
|
+
"value": [
|
|
11042
|
+
"A",
|
|
11043
|
+
"B",
|
|
11044
|
+
"C",
|
|
11045
|
+
"D",
|
|
11046
|
+
"E",
|
|
11047
|
+
"F",
|
|
11048
|
+
"G",
|
|
11049
|
+
"H",
|
|
11050
|
+
"I",
|
|
11051
|
+
"J",
|
|
11052
|
+
"K",
|
|
11053
|
+
"L",
|
|
11054
|
+
"M",
|
|
11055
|
+
"N",
|
|
11056
|
+
"O",
|
|
11057
|
+
"P",
|
|
11058
|
+
"Q",
|
|
11059
|
+
"R",
|
|
11060
|
+
"S",
|
|
11061
|
+
"T",
|
|
11062
|
+
"U",
|
|
11063
|
+
"V",
|
|
11064
|
+
"W",
|
|
11065
|
+
"X",
|
|
11066
|
+
"Y",
|
|
11067
|
+
"Z"
|
|
11068
|
+
]
|
|
11069
|
+
},
|
|
11070
|
+
{
|
|
11071
|
+
"name": "4th cipher rotor",
|
|
11072
|
+
"type": "editableOption",
|
|
11073
|
+
"value": [
|
|
11074
|
+
{
|
|
11075
|
+
"name": "Example 1",
|
|
11076
|
+
"value": "SRGWANHPJZFXVIDQCEUKBYOLMT"
|
|
11077
|
+
},
|
|
11078
|
+
{
|
|
11079
|
+
"name": "Example 2",
|
|
11080
|
+
"value": "THQEFSAZVKJYULBODCPXNIMWRG"
|
|
11081
|
+
},
|
|
11082
|
+
{
|
|
11083
|
+
"name": "Example 3",
|
|
11084
|
+
"value": "XDTUYLEVFNQZBPOGIRCSMHWKAJ"
|
|
11085
|
+
},
|
|
11086
|
+
{
|
|
11087
|
+
"name": "Example 4",
|
|
11088
|
+
"value": "LOHDMCWUPSTNGVXYFJREQIKBZA"
|
|
11089
|
+
},
|
|
11090
|
+
{
|
|
11091
|
+
"name": "Example 5",
|
|
11092
|
+
"value": "ERXWNZQIJYLVOFUMSGHTCKPBDA"
|
|
11093
|
+
},
|
|
11094
|
+
{
|
|
11095
|
+
"name": "Example 6",
|
|
11096
|
+
"value": "FQECYHJIOUMDZVPSLKRTGWXBAN"
|
|
11097
|
+
},
|
|
11098
|
+
{
|
|
11099
|
+
"name": "Example 7",
|
|
11100
|
+
"value": "TBYIUMKZDJSOPEWXVANHLCFQGR"
|
|
11101
|
+
},
|
|
11102
|
+
{
|
|
11103
|
+
"name": "Example 8",
|
|
11104
|
+
"value": "QZUPDTFNYIAOMLEBWJXCGHKRSV"
|
|
11105
|
+
},
|
|
11106
|
+
{
|
|
11107
|
+
"name": "Example 9",
|
|
11108
|
+
"value": "CZWNHEMPOVXLKRSIDGJFYBTQAU"
|
|
11109
|
+
},
|
|
11110
|
+
{
|
|
11111
|
+
"name": "Example 10",
|
|
11112
|
+
"value": "ENPXJVKYQBFZTICAGMOHWRLDUS"
|
|
11113
|
+
}
|
|
11114
|
+
]
|
|
11115
|
+
},
|
|
11116
|
+
{
|
|
11117
|
+
"name": "4th cipher rotor reversed",
|
|
11118
|
+
"type": "boolean",
|
|
11119
|
+
"value": false
|
|
11120
|
+
},
|
|
11121
|
+
{
|
|
11122
|
+
"name": "4th cipher rotor intial value",
|
|
11123
|
+
"type": "option",
|
|
11124
|
+
"value": [
|
|
11125
|
+
"A",
|
|
11126
|
+
"B",
|
|
11127
|
+
"C",
|
|
11128
|
+
"D",
|
|
11129
|
+
"E",
|
|
11130
|
+
"F",
|
|
11131
|
+
"G",
|
|
11132
|
+
"H",
|
|
11133
|
+
"I",
|
|
11134
|
+
"J",
|
|
11135
|
+
"K",
|
|
11136
|
+
"L",
|
|
11137
|
+
"M",
|
|
11138
|
+
"N",
|
|
11139
|
+
"O",
|
|
11140
|
+
"P",
|
|
11141
|
+
"Q",
|
|
11142
|
+
"R",
|
|
11143
|
+
"S",
|
|
11144
|
+
"T",
|
|
11145
|
+
"U",
|
|
11146
|
+
"V",
|
|
11147
|
+
"W",
|
|
11148
|
+
"X",
|
|
11149
|
+
"Y",
|
|
11150
|
+
"Z"
|
|
11151
|
+
]
|
|
11152
|
+
},
|
|
11153
|
+
{
|
|
11154
|
+
"name": "5th (right-hand) cipher rotor",
|
|
11155
|
+
"type": "editableOption",
|
|
11156
|
+
"value": [
|
|
11157
|
+
{
|
|
11158
|
+
"name": "Example 1",
|
|
11159
|
+
"value": "SRGWANHPJZFXVIDQCEUKBYOLMT"
|
|
11160
|
+
},
|
|
11161
|
+
{
|
|
11162
|
+
"name": "Example 2",
|
|
11163
|
+
"value": "THQEFSAZVKJYULBODCPXNIMWRG"
|
|
11164
|
+
},
|
|
11165
|
+
{
|
|
11166
|
+
"name": "Example 3",
|
|
11167
|
+
"value": "XDTUYLEVFNQZBPOGIRCSMHWKAJ"
|
|
11168
|
+
},
|
|
11169
|
+
{
|
|
11170
|
+
"name": "Example 4",
|
|
11171
|
+
"value": "LOHDMCWUPSTNGVXYFJREQIKBZA"
|
|
11172
|
+
},
|
|
11173
|
+
{
|
|
11174
|
+
"name": "Example 5",
|
|
11175
|
+
"value": "ERXWNZQIJYLVOFUMSGHTCKPBDA"
|
|
11176
|
+
},
|
|
11177
|
+
{
|
|
11178
|
+
"name": "Example 6",
|
|
11179
|
+
"value": "FQECYHJIOUMDZVPSLKRTGWXBAN"
|
|
11180
|
+
},
|
|
11181
|
+
{
|
|
11182
|
+
"name": "Example 7",
|
|
11183
|
+
"value": "TBYIUMKZDJSOPEWXVANHLCFQGR"
|
|
11184
|
+
},
|
|
11185
|
+
{
|
|
11186
|
+
"name": "Example 8",
|
|
11187
|
+
"value": "QZUPDTFNYIAOMLEBWJXCGHKRSV"
|
|
11188
|
+
},
|
|
11189
|
+
{
|
|
11190
|
+
"name": "Example 9",
|
|
11191
|
+
"value": "CZWNHEMPOVXLKRSIDGJFYBTQAU"
|
|
11192
|
+
},
|
|
11193
|
+
{
|
|
11194
|
+
"name": "Example 10",
|
|
11195
|
+
"value": "ENPXJVKYQBFZTICAGMOHWRLDUS"
|
|
11196
|
+
}
|
|
11197
|
+
]
|
|
11198
|
+
},
|
|
11199
|
+
{
|
|
11200
|
+
"name": "5th cipher rotor reversed",
|
|
11201
|
+
"type": "boolean",
|
|
11202
|
+
"value": false
|
|
11203
|
+
},
|
|
11204
|
+
{
|
|
11205
|
+
"name": "5th cipher rotor intial value",
|
|
11206
|
+
"type": "option",
|
|
11207
|
+
"value": [
|
|
11208
|
+
"A",
|
|
11209
|
+
"B",
|
|
11210
|
+
"C",
|
|
11211
|
+
"D",
|
|
11212
|
+
"E",
|
|
11213
|
+
"F",
|
|
11214
|
+
"G",
|
|
11215
|
+
"H",
|
|
11216
|
+
"I",
|
|
11217
|
+
"J",
|
|
11218
|
+
"K",
|
|
11219
|
+
"L",
|
|
11220
|
+
"M",
|
|
11221
|
+
"N",
|
|
11222
|
+
"O",
|
|
11223
|
+
"P",
|
|
11224
|
+
"Q",
|
|
11225
|
+
"R",
|
|
11226
|
+
"S",
|
|
11227
|
+
"T",
|
|
11228
|
+
"U",
|
|
11229
|
+
"V",
|
|
11230
|
+
"W",
|
|
11231
|
+
"X",
|
|
11232
|
+
"Y",
|
|
11233
|
+
"Z"
|
|
11234
|
+
]
|
|
11235
|
+
},
|
|
11236
|
+
{
|
|
11237
|
+
"name": "1st (left-hand) control rotor",
|
|
11238
|
+
"type": "editableOption",
|
|
11239
|
+
"value": [
|
|
11240
|
+
{
|
|
11241
|
+
"name": "Example 1",
|
|
11242
|
+
"value": "SRGWANHPJZFXVIDQCEUKBYOLMT"
|
|
11243
|
+
},
|
|
11244
|
+
{
|
|
11245
|
+
"name": "Example 2",
|
|
11246
|
+
"value": "THQEFSAZVKJYULBODCPXNIMWRG"
|
|
11247
|
+
},
|
|
11248
|
+
{
|
|
11249
|
+
"name": "Example 3",
|
|
11250
|
+
"value": "XDTUYLEVFNQZBPOGIRCSMHWKAJ"
|
|
11251
|
+
},
|
|
11252
|
+
{
|
|
11253
|
+
"name": "Example 4",
|
|
11254
|
+
"value": "LOHDMCWUPSTNGVXYFJREQIKBZA"
|
|
11255
|
+
},
|
|
11256
|
+
{
|
|
11257
|
+
"name": "Example 5",
|
|
11258
|
+
"value": "ERXWNZQIJYLVOFUMSGHTCKPBDA"
|
|
11259
|
+
},
|
|
11260
|
+
{
|
|
11261
|
+
"name": "Example 6",
|
|
11262
|
+
"value": "FQECYHJIOUMDZVPSLKRTGWXBAN"
|
|
11263
|
+
},
|
|
11264
|
+
{
|
|
11265
|
+
"name": "Example 7",
|
|
11266
|
+
"value": "TBYIUMKZDJSOPEWXVANHLCFQGR"
|
|
11267
|
+
},
|
|
11268
|
+
{
|
|
11269
|
+
"name": "Example 8",
|
|
11270
|
+
"value": "QZUPDTFNYIAOMLEBWJXCGHKRSV"
|
|
11271
|
+
},
|
|
11272
|
+
{
|
|
11273
|
+
"name": "Example 9",
|
|
11274
|
+
"value": "CZWNHEMPOVXLKRSIDGJFYBTQAU"
|
|
11275
|
+
},
|
|
11276
|
+
{
|
|
11277
|
+
"name": "Example 10",
|
|
11278
|
+
"value": "ENPXJVKYQBFZTICAGMOHWRLDUS"
|
|
11279
|
+
}
|
|
11280
|
+
]
|
|
11281
|
+
},
|
|
11282
|
+
{
|
|
11283
|
+
"name": "1st control rotor reversed",
|
|
11284
|
+
"type": "boolean",
|
|
11285
|
+
"value": false
|
|
11286
|
+
},
|
|
11287
|
+
{
|
|
11288
|
+
"name": "1st control rotor intial value",
|
|
11289
|
+
"type": "option",
|
|
11290
|
+
"value": [
|
|
11291
|
+
"A",
|
|
11292
|
+
"B",
|
|
11293
|
+
"C",
|
|
11294
|
+
"D",
|
|
11295
|
+
"E",
|
|
11296
|
+
"F",
|
|
11297
|
+
"G",
|
|
11298
|
+
"H",
|
|
11299
|
+
"I",
|
|
11300
|
+
"J",
|
|
11301
|
+
"K",
|
|
11302
|
+
"L",
|
|
11303
|
+
"M",
|
|
11304
|
+
"N",
|
|
11305
|
+
"O",
|
|
11306
|
+
"P",
|
|
11307
|
+
"Q",
|
|
11308
|
+
"R",
|
|
11309
|
+
"S",
|
|
11310
|
+
"T",
|
|
11311
|
+
"U",
|
|
11312
|
+
"V",
|
|
11313
|
+
"W",
|
|
11314
|
+
"X",
|
|
11315
|
+
"Y",
|
|
11316
|
+
"Z"
|
|
11317
|
+
]
|
|
11318
|
+
},
|
|
11319
|
+
{
|
|
11320
|
+
"name": "2nd control rotor",
|
|
11321
|
+
"type": "editableOption",
|
|
11322
|
+
"value": [
|
|
11323
|
+
{
|
|
11324
|
+
"name": "Example 1",
|
|
11325
|
+
"value": "SRGWANHPJZFXVIDQCEUKBYOLMT"
|
|
11326
|
+
},
|
|
11327
|
+
{
|
|
11328
|
+
"name": "Example 2",
|
|
11329
|
+
"value": "THQEFSAZVKJYULBODCPXNIMWRG"
|
|
11330
|
+
},
|
|
11331
|
+
{
|
|
11332
|
+
"name": "Example 3",
|
|
11333
|
+
"value": "XDTUYLEVFNQZBPOGIRCSMHWKAJ"
|
|
11334
|
+
},
|
|
11335
|
+
{
|
|
11336
|
+
"name": "Example 4",
|
|
11337
|
+
"value": "LOHDMCWUPSTNGVXYFJREQIKBZA"
|
|
11338
|
+
},
|
|
11339
|
+
{
|
|
11340
|
+
"name": "Example 5",
|
|
11341
|
+
"value": "ERXWNZQIJYLVOFUMSGHTCKPBDA"
|
|
11342
|
+
},
|
|
11343
|
+
{
|
|
11344
|
+
"name": "Example 6",
|
|
11345
|
+
"value": "FQECYHJIOUMDZVPSLKRTGWXBAN"
|
|
11346
|
+
},
|
|
11347
|
+
{
|
|
11348
|
+
"name": "Example 7",
|
|
11349
|
+
"value": "TBYIUMKZDJSOPEWXVANHLCFQGR"
|
|
11350
|
+
},
|
|
11351
|
+
{
|
|
11352
|
+
"name": "Example 8",
|
|
11353
|
+
"value": "QZUPDTFNYIAOMLEBWJXCGHKRSV"
|
|
11354
|
+
},
|
|
11355
|
+
{
|
|
11356
|
+
"name": "Example 9",
|
|
11357
|
+
"value": "CZWNHEMPOVXLKRSIDGJFYBTQAU"
|
|
11358
|
+
},
|
|
11359
|
+
{
|
|
11360
|
+
"name": "Example 10",
|
|
11361
|
+
"value": "ENPXJVKYQBFZTICAGMOHWRLDUS"
|
|
11362
|
+
}
|
|
11363
|
+
]
|
|
11364
|
+
},
|
|
11365
|
+
{
|
|
11366
|
+
"name": "2nd control rotor reversed",
|
|
11367
|
+
"type": "boolean",
|
|
11368
|
+
"value": false
|
|
11369
|
+
},
|
|
11370
|
+
{
|
|
11371
|
+
"name": "2nd control rotor intial value",
|
|
11372
|
+
"type": "option",
|
|
11373
|
+
"value": [
|
|
11374
|
+
"A",
|
|
11375
|
+
"B",
|
|
11376
|
+
"C",
|
|
11377
|
+
"D",
|
|
11378
|
+
"E",
|
|
11379
|
+
"F",
|
|
11380
|
+
"G",
|
|
11381
|
+
"H",
|
|
11382
|
+
"I",
|
|
11383
|
+
"J",
|
|
11384
|
+
"K",
|
|
11385
|
+
"L",
|
|
11386
|
+
"M",
|
|
11387
|
+
"N",
|
|
11388
|
+
"O",
|
|
11389
|
+
"P",
|
|
11390
|
+
"Q",
|
|
11391
|
+
"R",
|
|
11392
|
+
"S",
|
|
11393
|
+
"T",
|
|
11394
|
+
"U",
|
|
11395
|
+
"V",
|
|
11396
|
+
"W",
|
|
11397
|
+
"X",
|
|
11398
|
+
"Y",
|
|
11399
|
+
"Z"
|
|
11400
|
+
]
|
|
11401
|
+
},
|
|
11402
|
+
{
|
|
11403
|
+
"name": "3rd (middle) control rotor",
|
|
11404
|
+
"type": "editableOption",
|
|
11405
|
+
"value": [
|
|
11406
|
+
{
|
|
11407
|
+
"name": "Example 1",
|
|
11408
|
+
"value": "SRGWANHPJZFXVIDQCEUKBYOLMT"
|
|
11409
|
+
},
|
|
11410
|
+
{
|
|
11411
|
+
"name": "Example 2",
|
|
11412
|
+
"value": "THQEFSAZVKJYULBODCPXNIMWRG"
|
|
11413
|
+
},
|
|
11414
|
+
{
|
|
11415
|
+
"name": "Example 3",
|
|
11416
|
+
"value": "XDTUYLEVFNQZBPOGIRCSMHWKAJ"
|
|
11417
|
+
},
|
|
11418
|
+
{
|
|
11419
|
+
"name": "Example 4",
|
|
11420
|
+
"value": "LOHDMCWUPSTNGVXYFJREQIKBZA"
|
|
11421
|
+
},
|
|
11422
|
+
{
|
|
11423
|
+
"name": "Example 5",
|
|
11424
|
+
"value": "ERXWNZQIJYLVOFUMSGHTCKPBDA"
|
|
11425
|
+
},
|
|
11426
|
+
{
|
|
11427
|
+
"name": "Example 6",
|
|
11428
|
+
"value": "FQECYHJIOUMDZVPSLKRTGWXBAN"
|
|
11429
|
+
},
|
|
11430
|
+
{
|
|
11431
|
+
"name": "Example 7",
|
|
11432
|
+
"value": "TBYIUMKZDJSOPEWXVANHLCFQGR"
|
|
11433
|
+
},
|
|
11434
|
+
{
|
|
11435
|
+
"name": "Example 8",
|
|
11436
|
+
"value": "QZUPDTFNYIAOMLEBWJXCGHKRSV"
|
|
11437
|
+
},
|
|
11438
|
+
{
|
|
11439
|
+
"name": "Example 9",
|
|
11440
|
+
"value": "CZWNHEMPOVXLKRSIDGJFYBTQAU"
|
|
11441
|
+
},
|
|
11442
|
+
{
|
|
11443
|
+
"name": "Example 10",
|
|
11444
|
+
"value": "ENPXJVKYQBFZTICAGMOHWRLDUS"
|
|
11445
|
+
}
|
|
11446
|
+
]
|
|
11447
|
+
},
|
|
11448
|
+
{
|
|
11449
|
+
"name": "3rd control rotor reversed",
|
|
11450
|
+
"type": "boolean",
|
|
11451
|
+
"value": false
|
|
11452
|
+
},
|
|
11453
|
+
{
|
|
11454
|
+
"name": "3rd control rotor intial value",
|
|
11455
|
+
"type": "option",
|
|
11456
|
+
"value": [
|
|
11457
|
+
"A",
|
|
11458
|
+
"B",
|
|
11459
|
+
"C",
|
|
11460
|
+
"D",
|
|
11461
|
+
"E",
|
|
11462
|
+
"F",
|
|
11463
|
+
"G",
|
|
11464
|
+
"H",
|
|
11465
|
+
"I",
|
|
11466
|
+
"J",
|
|
11467
|
+
"K",
|
|
11468
|
+
"L",
|
|
11469
|
+
"M",
|
|
11470
|
+
"N",
|
|
11471
|
+
"O",
|
|
11472
|
+
"P",
|
|
11473
|
+
"Q",
|
|
11474
|
+
"R",
|
|
11475
|
+
"S",
|
|
11476
|
+
"T",
|
|
11477
|
+
"U",
|
|
11478
|
+
"V",
|
|
11479
|
+
"W",
|
|
11480
|
+
"X",
|
|
11481
|
+
"Y",
|
|
11482
|
+
"Z"
|
|
11483
|
+
]
|
|
11484
|
+
},
|
|
11485
|
+
{
|
|
11486
|
+
"name": "4th control rotor",
|
|
11487
|
+
"type": "editableOption",
|
|
11488
|
+
"value": [
|
|
11489
|
+
{
|
|
11490
|
+
"name": "Example 1",
|
|
11491
|
+
"value": "SRGWANHPJZFXVIDQCEUKBYOLMT"
|
|
11492
|
+
},
|
|
11493
|
+
{
|
|
11494
|
+
"name": "Example 2",
|
|
11495
|
+
"value": "THQEFSAZVKJYULBODCPXNIMWRG"
|
|
11496
|
+
},
|
|
11497
|
+
{
|
|
11498
|
+
"name": "Example 3",
|
|
11499
|
+
"value": "XDTUYLEVFNQZBPOGIRCSMHWKAJ"
|
|
11500
|
+
},
|
|
11501
|
+
{
|
|
11502
|
+
"name": "Example 4",
|
|
11503
|
+
"value": "LOHDMCWUPSTNGVXYFJREQIKBZA"
|
|
11504
|
+
},
|
|
11505
|
+
{
|
|
11506
|
+
"name": "Example 5",
|
|
11507
|
+
"value": "ERXWNZQIJYLVOFUMSGHTCKPBDA"
|
|
11508
|
+
},
|
|
11509
|
+
{
|
|
11510
|
+
"name": "Example 6",
|
|
11511
|
+
"value": "FQECYHJIOUMDZVPSLKRTGWXBAN"
|
|
11512
|
+
},
|
|
11513
|
+
{
|
|
11514
|
+
"name": "Example 7",
|
|
11515
|
+
"value": "TBYIUMKZDJSOPEWXVANHLCFQGR"
|
|
11516
|
+
},
|
|
11517
|
+
{
|
|
11518
|
+
"name": "Example 8",
|
|
11519
|
+
"value": "QZUPDTFNYIAOMLEBWJXCGHKRSV"
|
|
11520
|
+
},
|
|
11521
|
+
{
|
|
11522
|
+
"name": "Example 9",
|
|
11523
|
+
"value": "CZWNHEMPOVXLKRSIDGJFYBTQAU"
|
|
11524
|
+
},
|
|
11525
|
+
{
|
|
11526
|
+
"name": "Example 10",
|
|
11527
|
+
"value": "ENPXJVKYQBFZTICAGMOHWRLDUS"
|
|
11528
|
+
}
|
|
11529
|
+
]
|
|
11530
|
+
},
|
|
11531
|
+
{
|
|
11532
|
+
"name": "4th control rotor reversed",
|
|
11533
|
+
"type": "boolean",
|
|
11534
|
+
"value": false
|
|
11535
|
+
},
|
|
11536
|
+
{
|
|
11537
|
+
"name": "4th control rotor intial value",
|
|
11538
|
+
"type": "option",
|
|
11539
|
+
"value": [
|
|
11540
|
+
"A",
|
|
11541
|
+
"B",
|
|
11542
|
+
"C",
|
|
11543
|
+
"D",
|
|
11544
|
+
"E",
|
|
11545
|
+
"F",
|
|
11546
|
+
"G",
|
|
11547
|
+
"H",
|
|
11548
|
+
"I",
|
|
11549
|
+
"J",
|
|
11550
|
+
"K",
|
|
11551
|
+
"L",
|
|
11552
|
+
"M",
|
|
11553
|
+
"N",
|
|
11554
|
+
"O",
|
|
11555
|
+
"P",
|
|
11556
|
+
"Q",
|
|
11557
|
+
"R",
|
|
11558
|
+
"S",
|
|
11559
|
+
"T",
|
|
11560
|
+
"U",
|
|
11561
|
+
"V",
|
|
11562
|
+
"W",
|
|
11563
|
+
"X",
|
|
11564
|
+
"Y",
|
|
11565
|
+
"Z"
|
|
11566
|
+
]
|
|
11567
|
+
},
|
|
11568
|
+
{
|
|
11569
|
+
"name": "5th (right-hand) control rotor",
|
|
11570
|
+
"type": "editableOption",
|
|
11571
|
+
"value": [
|
|
11572
|
+
{
|
|
11573
|
+
"name": "Example 1",
|
|
11574
|
+
"value": "SRGWANHPJZFXVIDQCEUKBYOLMT"
|
|
11575
|
+
},
|
|
11576
|
+
{
|
|
11577
|
+
"name": "Example 2",
|
|
11578
|
+
"value": "THQEFSAZVKJYULBODCPXNIMWRG"
|
|
11579
|
+
},
|
|
11580
|
+
{
|
|
11581
|
+
"name": "Example 3",
|
|
11582
|
+
"value": "XDTUYLEVFNQZBPOGIRCSMHWKAJ"
|
|
11583
|
+
},
|
|
11584
|
+
{
|
|
11585
|
+
"name": "Example 4",
|
|
11586
|
+
"value": "LOHDMCWUPSTNGVXYFJREQIKBZA"
|
|
11587
|
+
},
|
|
11588
|
+
{
|
|
11589
|
+
"name": "Example 5",
|
|
11590
|
+
"value": "ERXWNZQIJYLVOFUMSGHTCKPBDA"
|
|
11591
|
+
},
|
|
11592
|
+
{
|
|
11593
|
+
"name": "Example 6",
|
|
11594
|
+
"value": "FQECYHJIOUMDZVPSLKRTGWXBAN"
|
|
11595
|
+
},
|
|
11596
|
+
{
|
|
11597
|
+
"name": "Example 7",
|
|
11598
|
+
"value": "TBYIUMKZDJSOPEWXVANHLCFQGR"
|
|
11599
|
+
},
|
|
11600
|
+
{
|
|
11601
|
+
"name": "Example 8",
|
|
11602
|
+
"value": "QZUPDTFNYIAOMLEBWJXCGHKRSV"
|
|
11603
|
+
},
|
|
11604
|
+
{
|
|
11605
|
+
"name": "Example 9",
|
|
11606
|
+
"value": "CZWNHEMPOVXLKRSIDGJFYBTQAU"
|
|
11607
|
+
},
|
|
11608
|
+
{
|
|
11609
|
+
"name": "Example 10",
|
|
11610
|
+
"value": "ENPXJVKYQBFZTICAGMOHWRLDUS"
|
|
11611
|
+
}
|
|
11612
|
+
]
|
|
11613
|
+
},
|
|
11614
|
+
{
|
|
11615
|
+
"name": "5th control rotor reversed",
|
|
11616
|
+
"type": "boolean",
|
|
11617
|
+
"value": false
|
|
11618
|
+
},
|
|
11619
|
+
{
|
|
11620
|
+
"name": "5th control rotor intial value",
|
|
11621
|
+
"type": "option",
|
|
11622
|
+
"value": [
|
|
11623
|
+
"A",
|
|
11624
|
+
"B",
|
|
11625
|
+
"C",
|
|
11626
|
+
"D",
|
|
11627
|
+
"E",
|
|
11628
|
+
"F",
|
|
11629
|
+
"G",
|
|
11630
|
+
"H",
|
|
11631
|
+
"I",
|
|
11632
|
+
"J",
|
|
11633
|
+
"K",
|
|
11634
|
+
"L",
|
|
11635
|
+
"M",
|
|
11636
|
+
"N",
|
|
11637
|
+
"O",
|
|
11638
|
+
"P",
|
|
11639
|
+
"Q",
|
|
11640
|
+
"R",
|
|
11641
|
+
"S",
|
|
11642
|
+
"T",
|
|
11643
|
+
"U",
|
|
11644
|
+
"V",
|
|
11645
|
+
"W",
|
|
11646
|
+
"X",
|
|
11647
|
+
"Y",
|
|
11648
|
+
"Z"
|
|
11649
|
+
]
|
|
11650
|
+
},
|
|
11651
|
+
{
|
|
11652
|
+
"name": "1st (left-hand) index rotor",
|
|
11653
|
+
"type": "editableOption",
|
|
11654
|
+
"value": [
|
|
11655
|
+
{
|
|
11656
|
+
"name": "Example 1",
|
|
11657
|
+
"value": "6201348957"
|
|
11658
|
+
},
|
|
11659
|
+
{
|
|
11660
|
+
"name": "Example 2",
|
|
11661
|
+
"value": "6147253089"
|
|
11662
|
+
},
|
|
11663
|
+
{
|
|
11664
|
+
"name": "Example 3",
|
|
11665
|
+
"value": "8239647510"
|
|
11666
|
+
},
|
|
11667
|
+
{
|
|
11668
|
+
"name": "Example 4",
|
|
11669
|
+
"value": "7194835260"
|
|
11670
|
+
},
|
|
11671
|
+
{
|
|
11672
|
+
"name": "Example 5",
|
|
11673
|
+
"value": "4873205916"
|
|
11674
|
+
}
|
|
11675
|
+
]
|
|
11676
|
+
},
|
|
11677
|
+
{
|
|
11678
|
+
"name": "1st index rotor intial value",
|
|
11679
|
+
"type": "option",
|
|
11680
|
+
"value": [
|
|
11681
|
+
"0",
|
|
11682
|
+
"1",
|
|
11683
|
+
"2",
|
|
11684
|
+
"3",
|
|
11685
|
+
"4",
|
|
11686
|
+
"5",
|
|
11687
|
+
"6",
|
|
11688
|
+
"7",
|
|
11689
|
+
"8",
|
|
11690
|
+
"9"
|
|
11691
|
+
]
|
|
11692
|
+
},
|
|
11693
|
+
{
|
|
11694
|
+
"name": "2nd index rotor",
|
|
11695
|
+
"type": "editableOption",
|
|
11696
|
+
"value": [
|
|
11697
|
+
{
|
|
11698
|
+
"name": "Example 1",
|
|
11699
|
+
"value": "6201348957"
|
|
11700
|
+
},
|
|
11701
|
+
{
|
|
11702
|
+
"name": "Example 2",
|
|
11703
|
+
"value": "6147253089"
|
|
11704
|
+
},
|
|
11705
|
+
{
|
|
11706
|
+
"name": "Example 3",
|
|
11707
|
+
"value": "8239647510"
|
|
11708
|
+
},
|
|
11709
|
+
{
|
|
11710
|
+
"name": "Example 4",
|
|
11711
|
+
"value": "7194835260"
|
|
11712
|
+
},
|
|
11713
|
+
{
|
|
11714
|
+
"name": "Example 5",
|
|
11715
|
+
"value": "4873205916"
|
|
11716
|
+
}
|
|
11717
|
+
]
|
|
11718
|
+
},
|
|
11719
|
+
{
|
|
11720
|
+
"name": "2nd index rotor intial value",
|
|
11721
|
+
"type": "option",
|
|
11722
|
+
"value": [
|
|
11723
|
+
"0",
|
|
11724
|
+
"1",
|
|
11725
|
+
"2",
|
|
11726
|
+
"3",
|
|
11727
|
+
"4",
|
|
11728
|
+
"5",
|
|
11729
|
+
"6",
|
|
11730
|
+
"7",
|
|
11731
|
+
"8",
|
|
11732
|
+
"9"
|
|
11733
|
+
]
|
|
11734
|
+
},
|
|
11735
|
+
{
|
|
11736
|
+
"name": "3rd (middle) index rotor",
|
|
11737
|
+
"type": "editableOption",
|
|
11738
|
+
"value": [
|
|
11739
|
+
{
|
|
11740
|
+
"name": "Example 1",
|
|
11741
|
+
"value": "6201348957"
|
|
11742
|
+
},
|
|
11743
|
+
{
|
|
11744
|
+
"name": "Example 2",
|
|
11745
|
+
"value": "6147253089"
|
|
11746
|
+
},
|
|
11747
|
+
{
|
|
11748
|
+
"name": "Example 3",
|
|
11749
|
+
"value": "8239647510"
|
|
11750
|
+
},
|
|
11751
|
+
{
|
|
11752
|
+
"name": "Example 4",
|
|
11753
|
+
"value": "7194835260"
|
|
11754
|
+
},
|
|
11755
|
+
{
|
|
11756
|
+
"name": "Example 5",
|
|
11757
|
+
"value": "4873205916"
|
|
11758
|
+
}
|
|
11759
|
+
]
|
|
11760
|
+
},
|
|
11761
|
+
{
|
|
11762
|
+
"name": "3rd index rotor intial value",
|
|
11763
|
+
"type": "option",
|
|
11764
|
+
"value": [
|
|
11765
|
+
"0",
|
|
11766
|
+
"1",
|
|
11767
|
+
"2",
|
|
11768
|
+
"3",
|
|
11769
|
+
"4",
|
|
11770
|
+
"5",
|
|
11771
|
+
"6",
|
|
11772
|
+
"7",
|
|
11773
|
+
"8",
|
|
11774
|
+
"9"
|
|
11775
|
+
]
|
|
11776
|
+
},
|
|
11777
|
+
{
|
|
11778
|
+
"name": "4th index rotor",
|
|
11779
|
+
"type": "editableOption",
|
|
11780
|
+
"value": [
|
|
11781
|
+
{
|
|
11782
|
+
"name": "Example 1",
|
|
11783
|
+
"value": "6201348957"
|
|
11784
|
+
},
|
|
11785
|
+
{
|
|
11786
|
+
"name": "Example 2",
|
|
11787
|
+
"value": "6147253089"
|
|
11788
|
+
},
|
|
11789
|
+
{
|
|
11790
|
+
"name": "Example 3",
|
|
11791
|
+
"value": "8239647510"
|
|
11792
|
+
},
|
|
11793
|
+
{
|
|
11794
|
+
"name": "Example 4",
|
|
11795
|
+
"value": "7194835260"
|
|
11796
|
+
},
|
|
11797
|
+
{
|
|
11798
|
+
"name": "Example 5",
|
|
11799
|
+
"value": "4873205916"
|
|
11800
|
+
}
|
|
11801
|
+
]
|
|
11802
|
+
},
|
|
11803
|
+
{
|
|
11804
|
+
"name": "4th index rotor intial value",
|
|
11805
|
+
"type": "option",
|
|
11806
|
+
"value": [
|
|
11807
|
+
"0",
|
|
11808
|
+
"1",
|
|
11809
|
+
"2",
|
|
11810
|
+
"3",
|
|
11811
|
+
"4",
|
|
11812
|
+
"5",
|
|
11813
|
+
"6",
|
|
11814
|
+
"7",
|
|
11815
|
+
"8",
|
|
11816
|
+
"9"
|
|
11817
|
+
]
|
|
11818
|
+
},
|
|
11819
|
+
{
|
|
11820
|
+
"name": "5th (right-hand) index rotor",
|
|
11821
|
+
"type": "editableOption",
|
|
11822
|
+
"value": [
|
|
11823
|
+
{
|
|
11824
|
+
"name": "Example 1",
|
|
11825
|
+
"value": "6201348957"
|
|
11826
|
+
},
|
|
11827
|
+
{
|
|
11828
|
+
"name": "Example 2",
|
|
11829
|
+
"value": "6147253089"
|
|
11830
|
+
},
|
|
11831
|
+
{
|
|
11832
|
+
"name": "Example 3",
|
|
11833
|
+
"value": "8239647510"
|
|
11834
|
+
},
|
|
11835
|
+
{
|
|
11836
|
+
"name": "Example 4",
|
|
11837
|
+
"value": "7194835260"
|
|
11838
|
+
},
|
|
11839
|
+
{
|
|
11840
|
+
"name": "Example 5",
|
|
11841
|
+
"value": "4873205916"
|
|
11842
|
+
}
|
|
11843
|
+
]
|
|
11844
|
+
},
|
|
11845
|
+
{
|
|
11846
|
+
"name": "5th index rotor intial value",
|
|
11847
|
+
"type": "option",
|
|
11848
|
+
"value": [
|
|
11849
|
+
"0",
|
|
11850
|
+
"1",
|
|
11851
|
+
"2",
|
|
11852
|
+
"3",
|
|
11853
|
+
"4",
|
|
11854
|
+
"5",
|
|
11855
|
+
"6",
|
|
11856
|
+
"7",
|
|
11857
|
+
"8",
|
|
11858
|
+
"9"
|
|
11859
|
+
]
|
|
11860
|
+
},
|
|
11861
|
+
{
|
|
11862
|
+
"name": "SIGABA mode",
|
|
11863
|
+
"type": "option",
|
|
11864
|
+
"value": [
|
|
11865
|
+
"Encrypt",
|
|
11866
|
+
"Decrypt"
|
|
11867
|
+
]
|
|
11868
|
+
}
|
|
11869
|
+
]
|
|
11870
|
+
},
|
|
11871
|
+
"SM3": {
|
|
11872
|
+
"module": "Crypto",
|
|
11873
|
+
"description": "SM3 is a cryptographic hash function used in the Chinese National Standard. SM3 is mainly used in digital signatures, message authentication codes, and pseudorandom number generators. The message digest algorithm consists, by default, of 64 rounds and length of 256.",
|
|
11874
|
+
"infoURL": "https://wikipedia.org/wiki/SM3_(hash_function)",
|
|
11875
|
+
"inputType": "ArrayBuffer",
|
|
11876
|
+
"outputType": "string",
|
|
11877
|
+
"flowControl": false,
|
|
11878
|
+
"manualBake": false,
|
|
11879
|
+
"args": [
|
|
11880
|
+
{
|
|
11881
|
+
"name": "Length",
|
|
11882
|
+
"type": "number",
|
|
11883
|
+
"value": 256
|
|
11884
|
+
},
|
|
11885
|
+
{
|
|
11886
|
+
"name": "Rounds",
|
|
11887
|
+
"type": "number",
|
|
11888
|
+
"value": 64,
|
|
11889
|
+
"min": 16
|
|
11890
|
+
}
|
|
11891
|
+
]
|
|
11892
|
+
},
|
|
11893
|
+
"SM4 Decrypt": {
|
|
11894
|
+
"module": "Ciphers",
|
|
11895
|
+
"description": "SM4 is a 128-bit block cipher, currently established as a national standard (GB/T 32907-2016) of China.",
|
|
11896
|
+
"infoURL": "https://wikipedia.org/wiki/SM4_(cipher)",
|
|
11897
|
+
"inputType": "string",
|
|
11898
|
+
"outputType": "string",
|
|
11899
|
+
"flowControl": false,
|
|
11900
|
+
"manualBake": false,
|
|
11901
|
+
"args": [
|
|
11902
|
+
{
|
|
11903
|
+
"name": "Key",
|
|
11904
|
+
"type": "toggleString",
|
|
11905
|
+
"value": "",
|
|
11906
|
+
"toggleValues": [
|
|
11907
|
+
"Hex",
|
|
11908
|
+
"UTF8",
|
|
11909
|
+
"Latin1",
|
|
11910
|
+
"Base64"
|
|
11911
|
+
]
|
|
11912
|
+
},
|
|
11913
|
+
{
|
|
11914
|
+
"name": "IV",
|
|
11915
|
+
"type": "toggleString",
|
|
11916
|
+
"value": "",
|
|
11917
|
+
"toggleValues": [
|
|
11918
|
+
"Hex",
|
|
11919
|
+
"UTF8",
|
|
11920
|
+
"Latin1",
|
|
11921
|
+
"Base64"
|
|
11922
|
+
]
|
|
11923
|
+
},
|
|
11924
|
+
{
|
|
11925
|
+
"name": "Mode",
|
|
11926
|
+
"type": "option",
|
|
11927
|
+
"value": [
|
|
11928
|
+
"CBC",
|
|
11929
|
+
"CFB",
|
|
11930
|
+
"OFB",
|
|
11931
|
+
"CTR",
|
|
11932
|
+
"ECB",
|
|
11933
|
+
"CBC/NoPadding",
|
|
11934
|
+
"ECB/NoPadding"
|
|
11935
|
+
]
|
|
11936
|
+
},
|
|
11937
|
+
{
|
|
11938
|
+
"name": "Input",
|
|
11939
|
+
"type": "option",
|
|
11940
|
+
"value": [
|
|
11941
|
+
"Raw",
|
|
11942
|
+
"Hex"
|
|
11943
|
+
]
|
|
11944
|
+
},
|
|
11945
|
+
{
|
|
11946
|
+
"name": "Output",
|
|
11947
|
+
"type": "option",
|
|
11948
|
+
"value": [
|
|
11949
|
+
"Hex",
|
|
11950
|
+
"Raw"
|
|
11951
|
+
]
|
|
11952
|
+
}
|
|
11953
|
+
]
|
|
11954
|
+
},
|
|
11955
|
+
"SM4 Encrypt": {
|
|
11956
|
+
"module": "Ciphers",
|
|
11957
|
+
"description": "SM4 is a 128-bit block cipher, currently established as a national standard (GB/T 32907-2016) of China. Multiple block cipher modes are supported. When using CBC or ECB mode, the PKCS#7 padding scheme is used.",
|
|
11958
|
+
"infoURL": "https://wikipedia.org/wiki/SM4_(cipher)",
|
|
11959
|
+
"inputType": "string",
|
|
11960
|
+
"outputType": "string",
|
|
11961
|
+
"flowControl": false,
|
|
11962
|
+
"manualBake": false,
|
|
11963
|
+
"args": [
|
|
11964
|
+
{
|
|
11965
|
+
"name": "Key",
|
|
11966
|
+
"type": "toggleString",
|
|
11967
|
+
"value": "",
|
|
11968
|
+
"toggleValues": [
|
|
11969
|
+
"Hex",
|
|
11970
|
+
"UTF8",
|
|
11971
|
+
"Latin1",
|
|
11972
|
+
"Base64"
|
|
11973
|
+
]
|
|
11974
|
+
},
|
|
11975
|
+
{
|
|
11976
|
+
"name": "IV",
|
|
11977
|
+
"type": "toggleString",
|
|
11978
|
+
"value": "",
|
|
11979
|
+
"toggleValues": [
|
|
11980
|
+
"Hex",
|
|
11981
|
+
"UTF8",
|
|
11982
|
+
"Latin1",
|
|
11983
|
+
"Base64"
|
|
11984
|
+
]
|
|
11985
|
+
},
|
|
11986
|
+
{
|
|
11987
|
+
"name": "Mode",
|
|
11988
|
+
"type": "option",
|
|
11989
|
+
"value": [
|
|
11990
|
+
"CBC",
|
|
11991
|
+
"CFB",
|
|
11992
|
+
"OFB",
|
|
11993
|
+
"CTR",
|
|
11994
|
+
"ECB"
|
|
11995
|
+
]
|
|
11996
|
+
},
|
|
11997
|
+
{
|
|
11998
|
+
"name": "Input",
|
|
11999
|
+
"type": "option",
|
|
12000
|
+
"value": [
|
|
12001
|
+
"Raw",
|
|
12002
|
+
"Hex"
|
|
12003
|
+
]
|
|
12004
|
+
},
|
|
12005
|
+
{
|
|
12006
|
+
"name": "Output",
|
|
12007
|
+
"type": "option",
|
|
12008
|
+
"value": [
|
|
12009
|
+
"Hex",
|
|
12010
|
+
"Raw"
|
|
12011
|
+
]
|
|
12012
|
+
}
|
|
12013
|
+
]
|
|
12014
|
+
},
|
|
12015
|
+
"SQL Beautify": {
|
|
12016
|
+
"module": "Code",
|
|
12017
|
+
"description": "Indents and prettifies Structured Query Language (SQL) code.",
|
|
12018
|
+
"infoURL": null,
|
|
12019
|
+
"inputType": "string",
|
|
12020
|
+
"outputType": "string",
|
|
12021
|
+
"flowControl": false,
|
|
12022
|
+
"manualBake": false,
|
|
12023
|
+
"args": [
|
|
12024
|
+
{
|
|
12025
|
+
"name": "Indent string",
|
|
12026
|
+
"type": "binaryShortString",
|
|
12027
|
+
"value": "\\t"
|
|
12028
|
+
}
|
|
12029
|
+
]
|
|
12030
|
+
},
|
|
12031
|
+
"SQL Minify": {
|
|
12032
|
+
"module": "Code",
|
|
12033
|
+
"description": "Compresses Structured Query Language (SQL) code.",
|
|
12034
|
+
"infoURL": null,
|
|
12035
|
+
"inputType": "string",
|
|
12036
|
+
"outputType": "string",
|
|
12037
|
+
"flowControl": false,
|
|
12038
|
+
"manualBake": false,
|
|
12039
|
+
"args": []
|
|
12040
|
+
},
|
|
12041
|
+
"SSDEEP": {
|
|
12042
|
+
"module": "Crypto",
|
|
12043
|
+
"description": "SSDEEP is a program for computing context triggered piecewise hashes (CTPH). Also called fuzzy hashes, CTPH can match inputs that have homologies. Such inputs have sequences of identical bytes in the same order, although bytes in between these sequences may be different in both content and length.<br><br>SSDEEP hashes are now widely used for simple identification purposes (e.g. the 'Basic Properties' section in VirusTotal). Although 'better' fuzzy hashes are available, SSDEEP is still one of the primary choices because of its speed and being a de facto standard.<br><br>This operation is fundamentally the same as the CTPH operation, however their outputs differ in format.",
|
|
12044
|
+
"infoURL": "https://forensicswiki.xyz/wiki/index.php?title=Ssdeep",
|
|
12045
|
+
"inputType": "string",
|
|
12046
|
+
"outputType": "string",
|
|
12047
|
+
"flowControl": false,
|
|
12048
|
+
"manualBake": false,
|
|
12049
|
+
"args": []
|
|
12050
|
+
},
|
|
12051
|
+
"SUB": {
|
|
12052
|
+
"module": "Default",
|
|
12053
|
+
"description": "SUB the input with the given key (e.g. <code>fe023da5</code>), MOD 255",
|
|
12054
|
+
"infoURL": "https://wikipedia.org/wiki/Bitwise_operation#Bitwise_operators",
|
|
12055
|
+
"inputType": "byteArray",
|
|
12056
|
+
"outputType": "byteArray",
|
|
12057
|
+
"flowControl": false,
|
|
12058
|
+
"manualBake": false,
|
|
12059
|
+
"args": [
|
|
12060
|
+
{
|
|
12061
|
+
"name": "Key",
|
|
12062
|
+
"type": "toggleString",
|
|
12063
|
+
"value": "",
|
|
12064
|
+
"toggleValues": [
|
|
12065
|
+
"Hex",
|
|
12066
|
+
"Decimal",
|
|
12067
|
+
"Binary",
|
|
12068
|
+
"Base64",
|
|
12069
|
+
"UTF8",
|
|
12070
|
+
"Latin1"
|
|
12071
|
+
]
|
|
12072
|
+
}
|
|
12073
|
+
]
|
|
12074
|
+
},
|
|
12075
|
+
"Scan for Embedded Files": {
|
|
12076
|
+
"module": "Default",
|
|
12077
|
+
"description": "Scans the data for potential embedded files by looking for magic bytes at all offsets. This operation is prone to false positives.<br><br>WARNING: Files over about 100KB in size will take a VERY long time to process.",
|
|
12078
|
+
"infoURL": "https://wikipedia.org/wiki/List_of_file_signatures",
|
|
12079
|
+
"inputType": "ArrayBuffer",
|
|
12080
|
+
"outputType": "string",
|
|
12081
|
+
"flowControl": false,
|
|
12082
|
+
"manualBake": false,
|
|
12083
|
+
"args": [
|
|
12084
|
+
{
|
|
12085
|
+
"name": "Images",
|
|
12086
|
+
"type": "boolean",
|
|
12087
|
+
"value": true
|
|
12088
|
+
},
|
|
12089
|
+
{
|
|
12090
|
+
"name": "Video",
|
|
12091
|
+
"type": "boolean",
|
|
12092
|
+
"value": true
|
|
12093
|
+
},
|
|
12094
|
+
{
|
|
12095
|
+
"name": "Audio",
|
|
12096
|
+
"type": "boolean",
|
|
12097
|
+
"value": true
|
|
12098
|
+
},
|
|
12099
|
+
{
|
|
12100
|
+
"name": "Documents",
|
|
12101
|
+
"type": "boolean",
|
|
12102
|
+
"value": true
|
|
12103
|
+
},
|
|
12104
|
+
{
|
|
12105
|
+
"name": "Applications",
|
|
12106
|
+
"type": "boolean",
|
|
12107
|
+
"value": true
|
|
12108
|
+
},
|
|
12109
|
+
{
|
|
12110
|
+
"name": "Archives",
|
|
12111
|
+
"type": "boolean",
|
|
12112
|
+
"value": true
|
|
12113
|
+
},
|
|
12114
|
+
{
|
|
12115
|
+
"name": "Miscellaneous",
|
|
12116
|
+
"type": "boolean",
|
|
12117
|
+
"value": false
|
|
12118
|
+
}
|
|
12119
|
+
]
|
|
12120
|
+
},
|
|
12121
|
+
"Scatter chart": {
|
|
12122
|
+
"module": "Charts",
|
|
12123
|
+
"description": "Plots two-variable data as single points on a graph.",
|
|
12124
|
+
"infoURL": "https://wikipedia.org/wiki/Scatter_plot",
|
|
12125
|
+
"inputType": "string",
|
|
12126
|
+
"outputType": "html",
|
|
12127
|
+
"flowControl": false,
|
|
12128
|
+
"manualBake": false,
|
|
12129
|
+
"args": [
|
|
12130
|
+
{
|
|
12131
|
+
"name": "Record delimiter",
|
|
12132
|
+
"type": "option",
|
|
12133
|
+
"value": [
|
|
12134
|
+
"Line feed",
|
|
12135
|
+
"CRLF"
|
|
12136
|
+
]
|
|
12137
|
+
},
|
|
12138
|
+
{
|
|
12139
|
+
"name": "Field delimiter",
|
|
12140
|
+
"type": "option",
|
|
12141
|
+
"value": [
|
|
12142
|
+
"Space",
|
|
12143
|
+
"Comma",
|
|
12144
|
+
"Semi-colon",
|
|
12145
|
+
"Colon",
|
|
12146
|
+
"Tab"
|
|
12147
|
+
]
|
|
12148
|
+
},
|
|
12149
|
+
{
|
|
12150
|
+
"name": "Use column headers as labels",
|
|
12151
|
+
"type": "boolean",
|
|
12152
|
+
"value": true
|
|
12153
|
+
},
|
|
12154
|
+
{
|
|
12155
|
+
"name": "X label",
|
|
12156
|
+
"type": "string",
|
|
12157
|
+
"value": ""
|
|
12158
|
+
},
|
|
12159
|
+
{
|
|
12160
|
+
"name": "Y label",
|
|
12161
|
+
"type": "string",
|
|
12162
|
+
"value": ""
|
|
12163
|
+
},
|
|
12164
|
+
{
|
|
12165
|
+
"name": "Colour",
|
|
12166
|
+
"type": "string",
|
|
12167
|
+
"value": "black"
|
|
12168
|
+
},
|
|
12169
|
+
{
|
|
12170
|
+
"name": "Point radius",
|
|
12171
|
+
"type": "number",
|
|
10975
12172
|
"value": 10
|
|
10976
12173
|
},
|
|
10977
12174
|
{
|
|
@@ -14007,7 +15204,7 @@
|
|
|
14007
15204
|
},
|
|
14008
15205
|
"Triple DES Decrypt": {
|
|
14009
15206
|
"module": "Ciphers",
|
|
14010
|
-
"description": "Triple DES applies DES three times to each block to increase key size.<br><br><b>Key:</b> Triple DES uses a key length of 24 bytes (192 bits).<br>DES uses a key length of 8 bytes (64 bits).<br><br><b>IV:</b> The Initialization Vector should be 8 bytes long. If not entered, it will default to 8 null bytes.<br><br><b>Padding:</b> In CBC and ECB mode, PKCS#7 padding will be used.",
|
|
15207
|
+
"description": "Triple DES applies DES three times to each block to increase key size.<br><br><b>Key:</b> Triple DES uses a key length of 24 bytes (192 bits).<br>DES uses a key length of 8 bytes (64 bits).<br><br><b>IV:</b> The Initialization Vector should be 8 bytes long. If not entered, it will default to 8 null bytes.<br><br><b>Padding:</b> In CBC and ECB mode, PKCS#7 padding will be used as a default.",
|
|
14011
15208
|
"infoURL": "https://wikipedia.org/wiki/Triple_DES",
|
|
14012
15209
|
"inputType": "string",
|
|
14013
15210
|
"outputType": "string",
|
|
@@ -14044,7 +15241,9 @@
|
|
|
14044
15241
|
"CFB",
|
|
14045
15242
|
"OFB",
|
|
14046
15243
|
"CTR",
|
|
14047
|
-
"ECB"
|
|
15244
|
+
"ECB",
|
|
15245
|
+
"CBC/NoPadding",
|
|
15246
|
+
"ECB/NoPadding"
|
|
14048
15247
|
]
|
|
14049
15248
|
},
|
|
14050
15249
|
{
|