Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add cetacean cipher encoder and decoder operations, tests. Update .gi… #1308

Merged
merged 1 commit into from
Jul 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,6 @@ src/node/index.mjs
**/*.DS_Store
tests/browser/output/*

# ide
.idea
*.iml
2 changes: 2 additions & 0 deletions src/core/config/Categories.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@
"Blowfish Decrypt",
"DES Encrypt",
"DES Decrypt",
"Cetacean Cipher Encode",
"Cetacean Cipher Decode",
"Triple DES Encrypt",
"Triple DES Decrypt",
"RC2 Encrypt",
Expand Down
64 changes: 64 additions & 0 deletions src/core/operations/CetaceanCipherDecode.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
/**
* @author dolphinOnKeys [robin@weird.io]
* @copyright Crown Copyright 2022
* @license Apache-2.0
*/

import Operation from "../Operation.mjs";

/**
* Cetacean Cipher Decode operation
*/
class CetaceanCipherDecode extends Operation {

/**
* CetaceanCipherDecode constructor
*/
constructor() {
super();

this.name = "Cetacean Cipher Decode";
this.module = "Ciphers";
this.description = "Decode Cetacean Cipher input. <br/><br/>e.g. <code>EEEEEEEEEeeEeEEEEEEEEEEEEeeEeEEe</code> becomes <code>hi</code>";
this.infoURL = "";
this.inputType = "string";
this.outputType = "string";

this.checks = [
{
pattern: "^(?:[eE]{16,})(?: [eE]{16,})*$",
flags: "",
args: []
}
]
}

/**
* @param {string} input
* @param {Object[]} args
* @returns {string}
*/
run(input, args) {
const binaryArray = [];
for ( const char of input ) {
if ( char === ' ' ) {
binaryArray.push(...[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0 ]);
} else {
binaryArray.push( char === 'e' ? 1 : 0 );
}
}

const byteArray = [];

for ( let i = 0; i < binaryArray.length; i += 16 ) {
byteArray.push(binaryArray.slice(i, i + 16).join(''))
}

return byteArray.map( byte =>
String.fromCharCode(parseInt( byte , 2 )
)
).join('');
}
}

export default CetaceanCipherDecode;
54 changes: 54 additions & 0 deletions src/core/operations/CetaceanCipherEncode.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
/**
* @author dolphinOnKeys [robin@weird.io]
* @copyright Crown Copyright 2022
* @license Apache-2.0
*/

import Operation from "../Operation.mjs";

/**
* Cetacean Cipher Encode operation
*/
class CetaceanCipherEncode extends Operation {

/**
* CetaceanCipherEncode constructor
*/
constructor() {
super();

this.name = "Cetacean Cipher Encode";
this.module = "Ciphers";
this.description = "Converts any input into Cetacean Cipher. <br/><br/>e.g. <code>hi</code> becomes <code>EEEEEEEEEeeEeEEEEEEEEEEEEeeEeEEe</code>\"";
this.infoURL = "";
this.inputType = "string";
this.outputType = "string";
}

/**
* @param {string} input
* @param {Object[]} args
* @returns {string}
*/
run(input, args) {
let result = [];
let charArray = input.split('');

charArray.map( ( character ) => {
if ( character === ' ' ) {
result.push( character );
} else {
const binaryArray = this.encodeToBinary( character ).split('');
result.push( binaryArray.map(( str ) => str === '1' ? 'e' : 'E' ).join(''));
}
});

return result.join('');
}

encodeToBinary( char, padding = 16 ) {
return char.charCodeAt(0).toString(2).padStart( padding, '0');
}
}

export default CetaceanCipherEncode;
2 changes: 2 additions & 0 deletions tests/operations/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ import "./tests/Base62.mjs";
import "./tests/BitwiseOp.mjs";
import "./tests/ByteRepr.mjs";
import "./tests/CartesianProduct.mjs";
import "./tests/CetaceanCipherEncode.mjs";
import "./tests/CetaceanCipherDecode.mjs";
import "./tests/CharEnc.mjs";
import "./tests/ChangeIPFormat.mjs";
import "./tests/Charts.mjs";
Expand Down
22 changes: 22 additions & 0 deletions tests/operations/tests/CetaceanCipherDecode.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/**
* CetaceanCipher Encode tests
*
* @author dolphinOnKeys
* @copyright Crown Copyright 2022
* @licence Apache-2.0
*/
import TestRegister from "../../lib/TestRegister.mjs";

TestRegister.addTests([
{
name: "Cetacean Cipher Decode",
input: "EEEEEEEEEeeEEEEe EEEEEEEEEeeEEEeE EEEEEEEEEeeEEEee EEeeEEEEEeeEEeee",
expectedOutput: "a b c で",
recipeConfig: [
{
op: "Cetacean Cipher Decode",
args: []
},
],
}
]);
22 changes: 22 additions & 0 deletions tests/operations/tests/CetaceanCipherEncode.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/**
* 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: []
},
],
}
]);