On the Subject of the White Cipher

White as the driven snow, this cipher knows no bounds to give defusers a hard time.

On the module, you will see 3 screens, a keyboard, 2 arrows, and a submit button that displays the current page you’re on.

Pressing the right arrow takes you to the next page. Pressing the left arrow takes you to the previous page. There is a total of 2 pages.

On page 1, the top screen shows a 6 letter encrypted word, the middle screen shows a number.

On page 2, the top and middle screen shows an 8 letter key.

Follow the mechanics down below to decrypt your word:

Step 1: Base Caesar Cipher

For this, you’re going to need the encrypted word on the top screen, and the number on the middle screen, both from page 1.

The number in the middle screen was used to shift the letters of the encrypted word. However the number is not in base 10.

To figure out which base the number is in, take the sum of the alphabetic positions of the letters of the encrypted word (A = 1, B = 2, ... Z = 26). Then modulo 8 the sum (subtract 8 to the sum until the number is between 0 - 7), then add 2. The resulting number is the base of the number.

To convert the number to base 10, follow the steps below:

  • 1: Above each of the digits in your number (middle screen), list the power of the base that the digit represents. Start at 0 on the right and increment by 1 as you go left for each digit.
  • 2: Multiply each digit by the power of the base.
  • 3: Add all the numbers together to get your base 10 number.

After converting the number to base 10, add the number to each letter of the encrypted word using its alphabetic position (A = 1, B = 2...Y = 25, Z = 0), modulo 26, and convert the number back to a letter to get a new encrypted word.

Example

Encrypted word: FJHWHE
Number: 214
Base: 6 + 10 + 8 + 23 + 8 + 5 = 60 % 8 = 4 + 2 = 6

62 61 60
2  1  4
62 * 2 = 72
61 * 1 = 6
60 * 4 = 4
72 + 6 + 4 = 82

(Do this to make it easier for you): 82 % 26 = 4
F = 6 + 4 = 10 % 26 = 10 = J
J = 10 + 4 = 14 % 26 = 14 = N
H = 8 + 4 = 12 % 26 = 12 = L
W = 23 + 4 = 27 % 26 = 1 = A
H = 8 + 4 = 12 % 26 = 12 = L
E = 5 + 4 = 9 % 26 = 9 = I
New Encrypted Word: JNLALI

Step 2: Grille Transposition

For this, you will need the 8 letter keys from the top and middle screen on page 2.

Concatenate the 2 keys with the top screen going first, then turn it into a 4×4 matrix of letters.

Then take the grid below and rotate it 90 degrees clockwise X times, where X is the number of ports.

X   
   X
 X X
    

Take off the letters from the 4×4 matrix you made at the same position of the Xs on the grid. Make sure you take them off in reading order. Then rotate the grid 90 degrees clockwise.

Do this 3 more times to get your decrypted key.

Example

Top Screen: IPHSHYOC
Mid Screen: NAYLSMPY
# of Ports: 5

IPHS|   X
HYOC| X 
NAYL|    
SMPY| XX

SYMP

IPH |    
H OC|X X 
NAYL|X   
S  Y|   X

SYMP-HONY

IPH |XX 
   C|
 AYL|X
S   |X

SYMP-HONY-PHYS

I   |X   
   C|X
 A L|X X
    | 

SYMP-HONY-PHYS-ICAL

Decrypted Key: SYMPHONYPHYSICAL


Step 3: Sean Cipher

Welcome to Sean Cipher, where the ciphers are made up and the points don’t matter.

For this, you’re going to need the encrypted word you got from step 1, and the decrypted key from step 2.

Take the decrypted key and remove all 2nd and more occurrences of the same letter. Next, take the entire alphabet and remove all the letters that are shown in the key.

If the number of lit indicators is even, put the alphabet at the end of the key.
Otherwise, place it in front of the key.

Split the 26 letter key into 2 13 letter keys and place the 2nd half under the 1st half. This will now be called "THE SEAN SHIFTER".

If the alphabetic position of the 2nd letter in the Serial Number is odd, follow Instruction Set A. Otherwise, follow Instruction Set B.

Instruction Set A

For each letter of the encrypted word, do the following:

  • Find the letter of the encrypted word in THE SEAN SHIFTER and replace with the letter above/below.
  • Take the last letter of the top half of THE SEAN SHIFTER and place it at the front of the top half.
  • Swap the first letter of the top half with the first letter of the bottom half of THE SEAN SHIFTER.
  • Take the first letter of the bottom half of THE SEAN SHIFTER and place it at the back of the bottom half.

Instruction Set B

For each letter of the encrypted word, do the following:

  • Find the letter of the encrypted word in THE SEAN SHIFTER and replace with the letter above/below.
  • Take the last letter of the bottom half of THE SEAN SHIFTER and place it at the front of the bottom half.
  • Swap the first letter of the top half with the first letter of the bottom half of THE SEAN SHIFTER.
  • Take the first letter of the top half of THE SEAN SHIFTER and place it at the back of the top half.

After that you should now have your decrypted word.

Example

Encrypted Word: JNLALI
Key: SYMPHONICALBDEFGJKQRTUVWXZ
2nd letter is odd, following Instruction Set A.

SYMPHONICALBD
EFGJKQRTUVWXZ

J -> P

ESYMPHONICALB
FGJKQRTUVWXZD

N -> U

FESYMPHONICAL
GJKQRTUVWXZDB

L -> B

GFESYMPHONICA
JKQRTUVWXZDBL

A -> L

JGFESYMPHONIC
KQRTUVWXZDBLA

L -> I

KJGFESYMPHONI
QRTUVWXZDBLAC

I -> C

Decrypted Word: PUBLIC

Once you finally have your decrypted word, you can submit it. Once you start typing, all the screens will go black and the bottom screen will show what you are typing.

To clear it, just click one of the arrows. This goes to one of the pages and clears any input you put in. It will not let you go over 6 letters on input.

Once you are satisfied with your input, press the button labeled "SUB" to submit your answer. On a strike, the module will go back to the first page of the module, but it does not regenerate.