mirror of
https://github.com/gchq/CyberChef
synced 2025-12-15 07:43:22 +00:00
Added module framework
This commit is contained in:
22
src/core/config/modules/CharEnc.js
Normal file
22
src/core/config/modules/CharEnc.js
Normal file
@@ -0,0 +1,22 @@
|
||||
import CharEnc from "../../operations/CharEnc.js";
|
||||
|
||||
|
||||
/**
|
||||
* CharEnc module.
|
||||
*
|
||||
* Libraries:
|
||||
* - cptable
|
||||
* - CryptoJS
|
||||
*
|
||||
* @author n1474335 [n1474335@gmail.com]
|
||||
* @copyright Crown Copyright 2017
|
||||
* @license Apache-2.0
|
||||
*/
|
||||
let OpModules = self.OpModules || {};
|
||||
|
||||
OpModules.CharEnc = {
|
||||
"Encode text": CharEnc.runEncode,
|
||||
"Decode text": CharEnc.runDecode,
|
||||
};
|
||||
|
||||
export default OpModules;
|
||||
Reference in New Issue
Block a user