On the Subject of Logical Ternary Manipulation CM
A machine that knows no bounds when it comes to ciphers.
From the Synapse Cipher module by Kilo Bites and VFlyer.
Convert each letter of the encrypted word into ternary by using the Ternary Table:
Ternary Table
A | B | C | D | E | F | G | H | I | J | K | L | M |
---|---|---|---|---|---|---|---|---|---|---|---|---|
001 | 002 | 010 | 011 | 012 | 020 | 021 | 022 | 100 | 101 | 102 | 110 | 111 |
N | O | P | Q | R | S | T | U | V | W | X | Y | Z |
112 | 120 | 121 | 122 | 200 | 201 | 202 | 210 | 211 | 212 | 220 | 221 | 222 |
Concatenate each 3 digit number into a single ternary string in the order of which you got them. This will be referred to as TA.
Concatenate the ternary strings displayed on the screens in this order: 123. This will be referred to as TB.
If the Submit Button is white, follow the instructions under Encrypt Instructions. Otherwise follow the instructions under Decrypt Instructions.
Encrypt Instructions
- Take TA and split it into 3 rows of X digits where X is equal to the encrypted word’s length.
- Read the ternary string top to bottom, left to right to get a new ternary string.
- Take each digit from the resulting ternary string and add it with each digit from TB, modulo 3.
- Convert each 3 digit ternary back into letter via the Ternary Table to get your decrypted word.