mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-23 08:16:17 -04:00
23 lines
519 B
JavaScript
23 lines
519 B
JavaScript
![]() |
/**
|
||
|
* CetaceanCipher Encode tests
|
||
|
*
|
||
|
* @author dolphinOnKeys
|
||
|
* @copyright Crown Copyright 2022
|
||
|
* @licence Apache-2.0
|
||
|
*/
|
||
|
import TestRegister from "../../lib/TestRegister.mjs";
|
||
|
|
||
|
TestRegister.addTests([
|
||
|
{
|
||
|
name: "Cetacean Cipher Encode",
|
||
|
input: "a b c で",
|
||
|
expectedOutput: "EEEEEEEEEeeEEEEe EEEEEEEEEeeEEEeE EEEEEEEEEeeEEEee EEeeEEEEEeeEEeee",
|
||
|
recipeConfig: [
|
||
|
{
|
||
|
op: "Cetacean Cipher Encode",
|
||
|
args: []
|
||
|
},
|
||
|
],
|
||
|
}
|
||
|
]);
|