mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-22 15:56:16 -04:00
23 lines
395 B
JavaScript
23 lines
395 B
JavaScript
![]() |
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;
|