cyberchef 10.22.0 → 10.22.1
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 +1 -1
- package/src/core/config/OperationConfig.json +21837 -0
- package/src/core/config/modules/Bletchley.mjs +28 -0
- package/src/core/config/modules/Charts.mjs +24 -0
- package/src/core/config/modules/Ciphers.mjs +122 -0
- package/src/core/config/modules/Code.mjs +60 -0
- package/src/core/config/modules/Compression.mjs +52 -0
- package/src/core/config/modules/Crypto.mjs +128 -0
- package/src/core/config/modules/Default.mjs +418 -0
- package/src/core/config/modules/Diff.mjs +16 -0
- package/src/core/config/modules/Encodings.mjs +42 -0
- package/src/core/config/modules/Handlebars.mjs +16 -0
- package/src/core/config/modules/Hashing.mjs +30 -0
- package/src/core/config/modules/Image.mjs +70 -0
- package/src/core/config/modules/Jq.mjs +16 -0
- package/src/core/config/modules/OCR.mjs +16 -0
- package/src/core/config/modules/OpModules.mjs +63 -0
- package/src/core/config/modules/PGP.mjs +26 -0
- package/src/core/config/modules/Protobuf.mjs +18 -0
- package/src/core/config/modules/PublicKey.mjs +36 -0
- package/src/core/config/modules/Regex.mjs +40 -0
- package/src/core/config/modules/Serialise.mjs +26 -0
- package/src/core/config/modules/Shellcode.mjs +16 -0
- package/src/core/config/modules/URL.mjs +20 -0
- package/src/core/config/modules/UserAgent.mjs +16 -0
- package/src/core/config/modules/Yara.mjs +16 -0
- package/src/core/operations/index.mjs +940 -0
- package/src/node/index.mjs +2373 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE IS AUTOMATICALLY GENERATED BY src/core/config/scripts/generateConfig.mjs
|
|
3
|
+
*
|
|
4
|
+
* @author n1474335 [n1474335@gmail.com]
|
|
5
|
+
* @copyright Crown Copyright 2026
|
|
6
|
+
* @license Apache-2.0
|
|
7
|
+
*/
|
|
8
|
+
import Bombe from "../../operations/Bombe.mjs";
|
|
9
|
+
import Colossus from "../../operations/Colossus.mjs";
|
|
10
|
+
import Enigma from "../../operations/Enigma.mjs";
|
|
11
|
+
import Lorenz from "../../operations/Lorenz.mjs";
|
|
12
|
+
import MultipleBombe from "../../operations/MultipleBombe.mjs";
|
|
13
|
+
import SIGABA from "../../operations/SIGABA.mjs";
|
|
14
|
+
import Typex from "../../operations/Typex.mjs";
|
|
15
|
+
|
|
16
|
+
const OpModules = typeof self === "undefined" ? {} : self.OpModules || {};
|
|
17
|
+
|
|
18
|
+
OpModules.Bletchley = {
|
|
19
|
+
"Bombe": Bombe,
|
|
20
|
+
"Colossus": Colossus,
|
|
21
|
+
"Enigma": Enigma,
|
|
22
|
+
"Lorenz": Lorenz,
|
|
23
|
+
"Multiple Bombe": MultipleBombe,
|
|
24
|
+
"SIGABA": SIGABA,
|
|
25
|
+
"Typex": Typex,
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
export default OpModules;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE IS AUTOMATICALLY GENERATED BY src/core/config/scripts/generateConfig.mjs
|
|
3
|
+
*
|
|
4
|
+
* @author n1474335 [n1474335@gmail.com]
|
|
5
|
+
* @copyright Crown Copyright 2026
|
|
6
|
+
* @license Apache-2.0
|
|
7
|
+
*/
|
|
8
|
+
import Entropy from "../../operations/Entropy.mjs";
|
|
9
|
+
import HeatmapChart from "../../operations/HeatmapChart.mjs";
|
|
10
|
+
import HexDensityChart from "../../operations/HexDensityChart.mjs";
|
|
11
|
+
import ScatterChart from "../../operations/ScatterChart.mjs";
|
|
12
|
+
import SeriesChart from "../../operations/SeriesChart.mjs";
|
|
13
|
+
|
|
14
|
+
const OpModules = typeof self === "undefined" ? {} : self.OpModules || {};
|
|
15
|
+
|
|
16
|
+
OpModules.Charts = {
|
|
17
|
+
"Entropy": Entropy,
|
|
18
|
+
"Heatmap chart": HeatmapChart,
|
|
19
|
+
"Hex Density chart": HexDensityChart,
|
|
20
|
+
"Scatter chart": ScatterChart,
|
|
21
|
+
"Series chart": SeriesChart,
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
export default OpModules;
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE IS AUTOMATICALLY GENERATED BY src/core/config/scripts/generateConfig.mjs
|
|
3
|
+
*
|
|
4
|
+
* @author n1474335 [n1474335@gmail.com]
|
|
5
|
+
* @copyright Crown Copyright 2026
|
|
6
|
+
* @license Apache-2.0
|
|
7
|
+
*/
|
|
8
|
+
import A1Z26CipherDecode from "../../operations/A1Z26CipherDecode.mjs";
|
|
9
|
+
import A1Z26CipherEncode from "../../operations/A1Z26CipherEncode.mjs";
|
|
10
|
+
import AESDecrypt from "../../operations/AESDecrypt.mjs";
|
|
11
|
+
import AESEncrypt from "../../operations/AESEncrypt.mjs";
|
|
12
|
+
import AESKeyUnwrap from "../../operations/AESKeyUnwrap.mjs";
|
|
13
|
+
import AESKeyWrap from "../../operations/AESKeyWrap.mjs";
|
|
14
|
+
import AffineCipherDecode from "../../operations/AffineCipherDecode.mjs";
|
|
15
|
+
import AffineCipherEncode from "../../operations/AffineCipherEncode.mjs";
|
|
16
|
+
import AtbashCipher from "../../operations/AtbashCipher.mjs";
|
|
17
|
+
import BifidCipherDecode from "../../operations/BifidCipherDecode.mjs";
|
|
18
|
+
import BifidCipherEncode from "../../operations/BifidCipherEncode.mjs";
|
|
19
|
+
import BlowfishDecrypt from "../../operations/BlowfishDecrypt.mjs";
|
|
20
|
+
import BlowfishEncrypt from "../../operations/BlowfishEncrypt.mjs";
|
|
21
|
+
import CaesarBoxCipher from "../../operations/CaesarBoxCipher.mjs";
|
|
22
|
+
import CetaceanCipherDecode from "../../operations/CetaceanCipherDecode.mjs";
|
|
23
|
+
import CetaceanCipherEncode from "../../operations/CetaceanCipherEncode.mjs";
|
|
24
|
+
import ChaCha from "../../operations/ChaCha.mjs";
|
|
25
|
+
import DESDecrypt from "../../operations/DESDecrypt.mjs";
|
|
26
|
+
import DESEncrypt from "../../operations/DESEncrypt.mjs";
|
|
27
|
+
import DeriveEVPKey from "../../operations/DeriveEVPKey.mjs";
|
|
28
|
+
import DerivePBKDF2Key from "../../operations/DerivePBKDF2Key.mjs";
|
|
29
|
+
import ECDSASign from "../../operations/ECDSASign.mjs";
|
|
30
|
+
import ECDSASignatureConversion from "../../operations/ECDSASignatureConversion.mjs";
|
|
31
|
+
import ECDSAVerify from "../../operations/ECDSAVerify.mjs";
|
|
32
|
+
import GOSTDecrypt from "../../operations/GOSTDecrypt.mjs";
|
|
33
|
+
import GOSTEncrypt from "../../operations/GOSTEncrypt.mjs";
|
|
34
|
+
import GOSTKeyUnwrap from "../../operations/GOSTKeyUnwrap.mjs";
|
|
35
|
+
import GOSTKeyWrap from "../../operations/GOSTKeyWrap.mjs";
|
|
36
|
+
import GOSTSign from "../../operations/GOSTSign.mjs";
|
|
37
|
+
import GOSTVerify from "../../operations/GOSTVerify.mjs";
|
|
38
|
+
import GenerateECDSAKeyPair from "../../operations/GenerateECDSAKeyPair.mjs";
|
|
39
|
+
import GenerateRSAKeyPair from "../../operations/GenerateRSAKeyPair.mjs";
|
|
40
|
+
import PseudoRandomNumberGenerator from "../../operations/PseudoRandomNumberGenerator.mjs";
|
|
41
|
+
import RC2Decrypt from "../../operations/RC2Decrypt.mjs";
|
|
42
|
+
import RC2Encrypt from "../../operations/RC2Encrypt.mjs";
|
|
43
|
+
import RC4 from "../../operations/RC4.mjs";
|
|
44
|
+
import RC4Drop from "../../operations/RC4Drop.mjs";
|
|
45
|
+
import RSADecrypt from "../../operations/RSADecrypt.mjs";
|
|
46
|
+
import RSAEncrypt from "../../operations/RSAEncrypt.mjs";
|
|
47
|
+
import RSASign from "../../operations/RSASign.mjs";
|
|
48
|
+
import RSAVerify from "../../operations/RSAVerify.mjs";
|
|
49
|
+
import Rabbit from "../../operations/Rabbit.mjs";
|
|
50
|
+
import RailFenceCipherDecode from "../../operations/RailFenceCipherDecode.mjs";
|
|
51
|
+
import RailFenceCipherEncode from "../../operations/RailFenceCipherEncode.mjs";
|
|
52
|
+
import SM4Decrypt from "../../operations/SM4Decrypt.mjs";
|
|
53
|
+
import SM4Encrypt from "../../operations/SM4Encrypt.mjs";
|
|
54
|
+
import Salsa20 from "../../operations/Salsa20.mjs";
|
|
55
|
+
import TripleDESDecrypt from "../../operations/TripleDESDecrypt.mjs";
|
|
56
|
+
import TripleDESEncrypt from "../../operations/TripleDESEncrypt.mjs";
|
|
57
|
+
import VigenèreDecode from "../../operations/VigenèreDecode.mjs";
|
|
58
|
+
import VigenèreEncode from "../../operations/VigenèreEncode.mjs";
|
|
59
|
+
import XSalsa20 from "../../operations/XSalsa20.mjs";
|
|
60
|
+
import XXTEADecrypt from "../../operations/XXTEADecrypt.mjs";
|
|
61
|
+
import XXTEAEncrypt from "../../operations/XXTEAEncrypt.mjs";
|
|
62
|
+
|
|
63
|
+
const OpModules = typeof self === "undefined" ? {} : self.OpModules || {};
|
|
64
|
+
|
|
65
|
+
OpModules.Ciphers = {
|
|
66
|
+
"A1Z26 Cipher Decode": A1Z26CipherDecode,
|
|
67
|
+
"A1Z26 Cipher Encode": A1Z26CipherEncode,
|
|
68
|
+
"AES Decrypt": AESDecrypt,
|
|
69
|
+
"AES Encrypt": AESEncrypt,
|
|
70
|
+
"AES Key Unwrap": AESKeyUnwrap,
|
|
71
|
+
"AES Key Wrap": AESKeyWrap,
|
|
72
|
+
"Affine Cipher Decode": AffineCipherDecode,
|
|
73
|
+
"Affine Cipher Encode": AffineCipherEncode,
|
|
74
|
+
"Atbash Cipher": AtbashCipher,
|
|
75
|
+
"Bifid Cipher Decode": BifidCipherDecode,
|
|
76
|
+
"Bifid Cipher Encode": BifidCipherEncode,
|
|
77
|
+
"Blowfish Decrypt": BlowfishDecrypt,
|
|
78
|
+
"Blowfish Encrypt": BlowfishEncrypt,
|
|
79
|
+
"Caesar Box Cipher": CaesarBoxCipher,
|
|
80
|
+
"Cetacean Cipher Decode": CetaceanCipherDecode,
|
|
81
|
+
"Cetacean Cipher Encode": CetaceanCipherEncode,
|
|
82
|
+
"ChaCha": ChaCha,
|
|
83
|
+
"DES Decrypt": DESDecrypt,
|
|
84
|
+
"DES Encrypt": DESEncrypt,
|
|
85
|
+
"Derive EVP key": DeriveEVPKey,
|
|
86
|
+
"Derive PBKDF2 key": DerivePBKDF2Key,
|
|
87
|
+
"ECDSA Sign": ECDSASign,
|
|
88
|
+
"ECDSA Signature Conversion": ECDSASignatureConversion,
|
|
89
|
+
"ECDSA Verify": ECDSAVerify,
|
|
90
|
+
"GOST Decrypt": GOSTDecrypt,
|
|
91
|
+
"GOST Encrypt": GOSTEncrypt,
|
|
92
|
+
"GOST Key Unwrap": GOSTKeyUnwrap,
|
|
93
|
+
"GOST Key Wrap": GOSTKeyWrap,
|
|
94
|
+
"GOST Sign": GOSTSign,
|
|
95
|
+
"GOST Verify": GOSTVerify,
|
|
96
|
+
"Generate ECDSA Key Pair": GenerateECDSAKeyPair,
|
|
97
|
+
"Generate RSA Key Pair": GenerateRSAKeyPair,
|
|
98
|
+
"Pseudo-Random Number Generator": PseudoRandomNumberGenerator,
|
|
99
|
+
"RC2 Decrypt": RC2Decrypt,
|
|
100
|
+
"RC2 Encrypt": RC2Encrypt,
|
|
101
|
+
"RC4": RC4,
|
|
102
|
+
"RC4 Drop": RC4Drop,
|
|
103
|
+
"RSA Decrypt": RSADecrypt,
|
|
104
|
+
"RSA Encrypt": RSAEncrypt,
|
|
105
|
+
"RSA Sign": RSASign,
|
|
106
|
+
"RSA Verify": RSAVerify,
|
|
107
|
+
"Rabbit": Rabbit,
|
|
108
|
+
"Rail Fence Cipher Decode": RailFenceCipherDecode,
|
|
109
|
+
"Rail Fence Cipher Encode": RailFenceCipherEncode,
|
|
110
|
+
"SM4 Decrypt": SM4Decrypt,
|
|
111
|
+
"SM4 Encrypt": SM4Encrypt,
|
|
112
|
+
"Salsa20": Salsa20,
|
|
113
|
+
"Triple DES Decrypt": TripleDESDecrypt,
|
|
114
|
+
"Triple DES Encrypt": TripleDESEncrypt,
|
|
115
|
+
"Vigenère Decode": VigenèreDecode,
|
|
116
|
+
"Vigenère Encode": VigenèreEncode,
|
|
117
|
+
"XSalsa20": XSalsa20,
|
|
118
|
+
"XXTEA Decrypt": XXTEADecrypt,
|
|
119
|
+
"XXTEA Encrypt": XXTEAEncrypt,
|
|
120
|
+
};
|
|
121
|
+
|
|
122
|
+
export default OpModules;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE IS AUTOMATICALLY GENERATED BY src/core/config/scripts/generateConfig.mjs
|
|
3
|
+
*
|
|
4
|
+
* @author n1474335 [n1474335@gmail.com]
|
|
5
|
+
* @copyright Crown Copyright 2026
|
|
6
|
+
* @license Apache-2.0
|
|
7
|
+
*/
|
|
8
|
+
import CSSBeautify from "../../operations/CSSBeautify.mjs";
|
|
9
|
+
import CSSMinify from "../../operations/CSSMinify.mjs";
|
|
10
|
+
import CSSSelector from "../../operations/CSSSelector.mjs";
|
|
11
|
+
import FromMessagePack from "../../operations/FromMessagePack.mjs";
|
|
12
|
+
import GenericCodeBeautify from "../../operations/GenericCodeBeautify.mjs";
|
|
13
|
+
import JPathExpression from "../../operations/JPathExpression.mjs";
|
|
14
|
+
import JSONBeautify from "../../operations/JSONBeautify.mjs";
|
|
15
|
+
import JSONMinify from "../../operations/JSONMinify.mjs";
|
|
16
|
+
import JavaScriptBeautify from "../../operations/JavaScriptBeautify.mjs";
|
|
17
|
+
import JavaScriptMinify from "../../operations/JavaScriptMinify.mjs";
|
|
18
|
+
import JavaScriptParser from "../../operations/JavaScriptParser.mjs";
|
|
19
|
+
import Jsonata from "../../operations/Jsonata.mjs";
|
|
20
|
+
import RenderMarkdown from "../../operations/RenderMarkdown.mjs";
|
|
21
|
+
import SQLBeautify from "../../operations/SQLBeautify.mjs";
|
|
22
|
+
import SQLMinify from "../../operations/SQLMinify.mjs";
|
|
23
|
+
import SyntaxHighlighter from "../../operations/SyntaxHighlighter.mjs";
|
|
24
|
+
import ToCamelCase from "../../operations/ToCamelCase.mjs";
|
|
25
|
+
import ToKebabCase from "../../operations/ToKebabCase.mjs";
|
|
26
|
+
import ToMessagePack from "../../operations/ToMessagePack.mjs";
|
|
27
|
+
import ToSnakeCase from "../../operations/ToSnakeCase.mjs";
|
|
28
|
+
import XMLBeautify from "../../operations/XMLBeautify.mjs";
|
|
29
|
+
import XMLMinify from "../../operations/XMLMinify.mjs";
|
|
30
|
+
import XPathExpression from "../../operations/XPathExpression.mjs";
|
|
31
|
+
|
|
32
|
+
const OpModules = typeof self === "undefined" ? {} : self.OpModules || {};
|
|
33
|
+
|
|
34
|
+
OpModules.Code = {
|
|
35
|
+
"CSS Beautify": CSSBeautify,
|
|
36
|
+
"CSS Minify": CSSMinify,
|
|
37
|
+
"CSS selector": CSSSelector,
|
|
38
|
+
"From MessagePack": FromMessagePack,
|
|
39
|
+
"Generic Code Beautify": GenericCodeBeautify,
|
|
40
|
+
"JPath expression": JPathExpression,
|
|
41
|
+
"JSON Beautify": JSONBeautify,
|
|
42
|
+
"JSON Minify": JSONMinify,
|
|
43
|
+
"JavaScript Beautify": JavaScriptBeautify,
|
|
44
|
+
"JavaScript Minify": JavaScriptMinify,
|
|
45
|
+
"JavaScript Parser": JavaScriptParser,
|
|
46
|
+
"Jsonata Query": Jsonata,
|
|
47
|
+
"Render Markdown": RenderMarkdown,
|
|
48
|
+
"SQL Beautify": SQLBeautify,
|
|
49
|
+
"SQL Minify": SQLMinify,
|
|
50
|
+
"Syntax highlighter": SyntaxHighlighter,
|
|
51
|
+
"To Camel case": ToCamelCase,
|
|
52
|
+
"To Kebab case": ToKebabCase,
|
|
53
|
+
"To MessagePack": ToMessagePack,
|
|
54
|
+
"To Snake case": ToSnakeCase,
|
|
55
|
+
"XML Beautify": XMLBeautify,
|
|
56
|
+
"XML Minify": XMLMinify,
|
|
57
|
+
"XPath expression": XPathExpression,
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
export default OpModules;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE IS AUTOMATICALLY GENERATED BY src/core/config/scripts/generateConfig.mjs
|
|
3
|
+
*
|
|
4
|
+
* @author n1474335 [n1474335@gmail.com]
|
|
5
|
+
* @copyright Crown Copyright 2026
|
|
6
|
+
* @license Apache-2.0
|
|
7
|
+
*/
|
|
8
|
+
import Bzip2Compress from "../../operations/Bzip2Compress.mjs";
|
|
9
|
+
import Bzip2Decompress from "../../operations/Bzip2Decompress.mjs";
|
|
10
|
+
import Gunzip from "../../operations/Gunzip.mjs";
|
|
11
|
+
import Gzip from "../../operations/Gzip.mjs";
|
|
12
|
+
import LZ4Compress from "../../operations/LZ4Compress.mjs";
|
|
13
|
+
import LZ4Decompress from "../../operations/LZ4Decompress.mjs";
|
|
14
|
+
import LZMACompress from "../../operations/LZMACompress.mjs";
|
|
15
|
+
import LZMADecompress from "../../operations/LZMADecompress.mjs";
|
|
16
|
+
import LZNT1Decompress from "../../operations/LZNT1Decompress.mjs";
|
|
17
|
+
import LZStringCompress from "../../operations/LZStringCompress.mjs";
|
|
18
|
+
import LZStringDecompress from "../../operations/LZStringDecompress.mjs";
|
|
19
|
+
import RawDeflate from "../../operations/RawDeflate.mjs";
|
|
20
|
+
import RawInflate from "../../operations/RawInflate.mjs";
|
|
21
|
+
import Tar from "../../operations/Tar.mjs";
|
|
22
|
+
import Untar from "../../operations/Untar.mjs";
|
|
23
|
+
import Unzip from "../../operations/Unzip.mjs";
|
|
24
|
+
import Zip from "../../operations/Zip.mjs";
|
|
25
|
+
import ZlibDeflate from "../../operations/ZlibDeflate.mjs";
|
|
26
|
+
import ZlibInflate from "../../operations/ZlibInflate.mjs";
|
|
27
|
+
|
|
28
|
+
const OpModules = typeof self === "undefined" ? {} : self.OpModules || {};
|
|
29
|
+
|
|
30
|
+
OpModules.Compression = {
|
|
31
|
+
"Bzip2 Compress": Bzip2Compress,
|
|
32
|
+
"Bzip2 Decompress": Bzip2Decompress,
|
|
33
|
+
"Gunzip": Gunzip,
|
|
34
|
+
"Gzip": Gzip,
|
|
35
|
+
"LZ4 Compress": LZ4Compress,
|
|
36
|
+
"LZ4 Decompress": LZ4Decompress,
|
|
37
|
+
"LZMA Compress": LZMACompress,
|
|
38
|
+
"LZMA Decompress": LZMADecompress,
|
|
39
|
+
"LZNT1 Decompress": LZNT1Decompress,
|
|
40
|
+
"LZString Compress": LZStringCompress,
|
|
41
|
+
"LZString Decompress": LZStringDecompress,
|
|
42
|
+
"Raw Deflate": RawDeflate,
|
|
43
|
+
"Raw Inflate": RawInflate,
|
|
44
|
+
"Tar": Tar,
|
|
45
|
+
"Untar": Untar,
|
|
46
|
+
"Unzip": Unzip,
|
|
47
|
+
"Zip": Zip,
|
|
48
|
+
"Zlib Deflate": ZlibDeflate,
|
|
49
|
+
"Zlib Inflate": ZlibInflate,
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
export default OpModules;
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE IS AUTOMATICALLY GENERATED BY src/core/config/scripts/generateConfig.mjs
|
|
3
|
+
*
|
|
4
|
+
* @author n1474335 [n1474335@gmail.com]
|
|
5
|
+
* @copyright Crown Copyright 2026
|
|
6
|
+
* @license Apache-2.0
|
|
7
|
+
*/
|
|
8
|
+
import Adler32Checksum from "../../operations/Adler32Checksum.mjs";
|
|
9
|
+
import AnalyseHash from "../../operations/AnalyseHash.mjs";
|
|
10
|
+
import AnalyseUUID from "../../operations/AnalyseUUID.mjs";
|
|
11
|
+
import Argon2 from "../../operations/Argon2.mjs";
|
|
12
|
+
import Argon2Compare from "../../operations/Argon2Compare.mjs";
|
|
13
|
+
import Bcrypt from "../../operations/Bcrypt.mjs";
|
|
14
|
+
import BcryptCompare from "../../operations/BcryptCompare.mjs";
|
|
15
|
+
import BcryptParse from "../../operations/BcryptParse.mjs";
|
|
16
|
+
import CMAC from "../../operations/CMAC.mjs";
|
|
17
|
+
import CTPH from "../../operations/CTPH.mjs";
|
|
18
|
+
import CipherSaber2Decrypt from "../../operations/CipherSaber2Decrypt.mjs";
|
|
19
|
+
import CipherSaber2Encrypt from "../../operations/CipherSaber2Encrypt.mjs";
|
|
20
|
+
import CompareCTPHHashes from "../../operations/CompareCTPHHashes.mjs";
|
|
21
|
+
import CompareSSDEEPHashes from "../../operations/CompareSSDEEPHashes.mjs";
|
|
22
|
+
import DeriveHKDFKey from "../../operations/DeriveHKDFKey.mjs";
|
|
23
|
+
import Fletcher16Checksum from "../../operations/Fletcher16Checksum.mjs";
|
|
24
|
+
import Fletcher32Checksum from "../../operations/Fletcher32Checksum.mjs";
|
|
25
|
+
import Fletcher64Checksum from "../../operations/Fletcher64Checksum.mjs";
|
|
26
|
+
import Fletcher8Checksum from "../../operations/Fletcher8Checksum.mjs";
|
|
27
|
+
import GenerateAllChecksums from "../../operations/GenerateAllChecksums.mjs";
|
|
28
|
+
import GenerateAllHashes from "../../operations/GenerateAllHashes.mjs";
|
|
29
|
+
import GenerateUUID from "../../operations/GenerateUUID.mjs";
|
|
30
|
+
import HAS160 from "../../operations/HAS160.mjs";
|
|
31
|
+
import HASSHClientFingerprint from "../../operations/HASSHClientFingerprint.mjs";
|
|
32
|
+
import HASSHServerFingerprint from "../../operations/HASSHServerFingerprint.mjs";
|
|
33
|
+
import HMAC from "../../operations/HMAC.mjs";
|
|
34
|
+
import JA3Fingerprint from "../../operations/JA3Fingerprint.mjs";
|
|
35
|
+
import JA3SFingerprint from "../../operations/JA3SFingerprint.mjs";
|
|
36
|
+
import JA4Fingerprint from "../../operations/JA4Fingerprint.mjs";
|
|
37
|
+
import JA4ServerFingerprint from "../../operations/JA4ServerFingerprint.mjs";
|
|
38
|
+
import JWTDecode from "../../operations/JWTDecode.mjs";
|
|
39
|
+
import JWTSign from "../../operations/JWTSign.mjs";
|
|
40
|
+
import JWTVerify from "../../operations/JWTVerify.mjs";
|
|
41
|
+
import Keccak from "../../operations/Keccak.mjs";
|
|
42
|
+
import LMHash from "../../operations/LMHash.mjs";
|
|
43
|
+
import LS47Decrypt from "../../operations/LS47Decrypt.mjs";
|
|
44
|
+
import LS47Encrypt from "../../operations/LS47Encrypt.mjs";
|
|
45
|
+
import MD2 from "../../operations/MD2.mjs";
|
|
46
|
+
import MD4 from "../../operations/MD4.mjs";
|
|
47
|
+
import MD5 from "../../operations/MD5.mjs";
|
|
48
|
+
import MD6 from "../../operations/MD6.mjs";
|
|
49
|
+
import NTHash from "../../operations/NTHash.mjs";
|
|
50
|
+
import RIPEMD from "../../operations/RIPEMD.mjs";
|
|
51
|
+
import SHA0 from "../../operations/SHA0.mjs";
|
|
52
|
+
import SHA1 from "../../operations/SHA1.mjs";
|
|
53
|
+
import SHA2 from "../../operations/SHA2.mjs";
|
|
54
|
+
import SHA3 from "../../operations/SHA3.mjs";
|
|
55
|
+
import SM2Decrypt from "../../operations/SM2Decrypt.mjs";
|
|
56
|
+
import SM2Encrypt from "../../operations/SM2Encrypt.mjs";
|
|
57
|
+
import SM3 from "../../operations/SM3.mjs";
|
|
58
|
+
import SSDEEP from "../../operations/SSDEEP.mjs";
|
|
59
|
+
import Scrypt from "../../operations/Scrypt.mjs";
|
|
60
|
+
import Shake from "../../operations/Shake.mjs";
|
|
61
|
+
import Snefru from "../../operations/Snefru.mjs";
|
|
62
|
+
import TCPIPChecksum from "../../operations/TCPIPChecksum.mjs";
|
|
63
|
+
import Whirlpool from "../../operations/Whirlpool.mjs";
|
|
64
|
+
import XORChecksum from "../../operations/XORChecksum.mjs";
|
|
65
|
+
|
|
66
|
+
const OpModules = typeof self === "undefined" ? {} : self.OpModules || {};
|
|
67
|
+
|
|
68
|
+
OpModules.Crypto = {
|
|
69
|
+
"Adler-32 Checksum": Adler32Checksum,
|
|
70
|
+
"Analyse hash": AnalyseHash,
|
|
71
|
+
"Analyse UUID": AnalyseUUID,
|
|
72
|
+
"Argon2": Argon2,
|
|
73
|
+
"Argon2 compare": Argon2Compare,
|
|
74
|
+
"Bcrypt": Bcrypt,
|
|
75
|
+
"Bcrypt compare": BcryptCompare,
|
|
76
|
+
"Bcrypt parse": BcryptParse,
|
|
77
|
+
"CMAC": CMAC,
|
|
78
|
+
"CTPH": CTPH,
|
|
79
|
+
"CipherSaber2 Decrypt": CipherSaber2Decrypt,
|
|
80
|
+
"CipherSaber2 Encrypt": CipherSaber2Encrypt,
|
|
81
|
+
"Compare CTPH hashes": CompareCTPHHashes,
|
|
82
|
+
"Compare SSDEEP hashes": CompareSSDEEPHashes,
|
|
83
|
+
"Derive HKDF key": DeriveHKDFKey,
|
|
84
|
+
"Fletcher-16 Checksum": Fletcher16Checksum,
|
|
85
|
+
"Fletcher-32 Checksum": Fletcher32Checksum,
|
|
86
|
+
"Fletcher-64 Checksum": Fletcher64Checksum,
|
|
87
|
+
"Fletcher-8 Checksum": Fletcher8Checksum,
|
|
88
|
+
"Generate all checksums": GenerateAllChecksums,
|
|
89
|
+
"Generate all hashes": GenerateAllHashes,
|
|
90
|
+
"Generate UUID": GenerateUUID,
|
|
91
|
+
"HAS-160": HAS160,
|
|
92
|
+
"HASSH Client Fingerprint": HASSHClientFingerprint,
|
|
93
|
+
"HASSH Server Fingerprint": HASSHServerFingerprint,
|
|
94
|
+
"HMAC": HMAC,
|
|
95
|
+
"JA3 Fingerprint": JA3Fingerprint,
|
|
96
|
+
"JA3S Fingerprint": JA3SFingerprint,
|
|
97
|
+
"JA4 Fingerprint": JA4Fingerprint,
|
|
98
|
+
"JA4Server Fingerprint": JA4ServerFingerprint,
|
|
99
|
+
"JWT Decode": JWTDecode,
|
|
100
|
+
"JWT Sign": JWTSign,
|
|
101
|
+
"JWT Verify": JWTVerify,
|
|
102
|
+
"Keccak": Keccak,
|
|
103
|
+
"LM Hash": LMHash,
|
|
104
|
+
"LS47 Decrypt": LS47Decrypt,
|
|
105
|
+
"LS47 Encrypt": LS47Encrypt,
|
|
106
|
+
"MD2": MD2,
|
|
107
|
+
"MD4": MD4,
|
|
108
|
+
"MD5": MD5,
|
|
109
|
+
"MD6": MD6,
|
|
110
|
+
"NT Hash": NTHash,
|
|
111
|
+
"RIPEMD": RIPEMD,
|
|
112
|
+
"SHA0": SHA0,
|
|
113
|
+
"SHA1": SHA1,
|
|
114
|
+
"SHA2": SHA2,
|
|
115
|
+
"SHA3": SHA3,
|
|
116
|
+
"SM2 Decrypt": SM2Decrypt,
|
|
117
|
+
"SM2 Encrypt": SM2Encrypt,
|
|
118
|
+
"SM3": SM3,
|
|
119
|
+
"SSDEEP": SSDEEP,
|
|
120
|
+
"Scrypt": Scrypt,
|
|
121
|
+
"Shake": Shake,
|
|
122
|
+
"Snefru": Snefru,
|
|
123
|
+
"TCP/IP Checksum": TCPIPChecksum,
|
|
124
|
+
"Whirlpool": Whirlpool,
|
|
125
|
+
"XOR Checksum": XORChecksum,
|
|
126
|
+
};
|
|
127
|
+
|
|
128
|
+
export default OpModules;
|