Cipher methods Grid
Bifid cipher (Delastelle)
Polybius + coordinate fractionation. Rows and columns are split then recombined, shattering the letter-by-letter structure.
- Family :
- Grid
- Difficulty :
- Advanced
- Era :
- Around 1900, Félix Delastelle
- Inventor :
- Félix Delastelle
Also known as : Delastelle bifid
The bifid cipher was invented by the Frenchman Félix Delastelle around 1900. It’s one of the first fractionation methods: each plaintext letter is decomposed into two halves (its row and its column in a Polybius grid), the halves are separated and then recombined differently to form the ciphertext.
The effect is striking: each plaintext letter influences two non-adjacent ciphertext letters. Local statistics (frequency, digrams) become unreadable.
Principle
Step 1 — Polybius
A 5×5 grid holds the alphabet (I/J merged), possibly shuffled by a keyword:
1 2 3 4 5
1 A B C D E
2 F G H I L
3 M N O P Q
4 R S T U V
5 W X Y Z K
Each plaintext letter becomes a (row, column) pair.
Step 2 — Fractionation
Pairs are written in columns (rows on the top line, columns on the bottom):
Plain : C I P H E
Row : 1 2 3 2 1
Column : 3 4 4 3 5
Step 3 — Recomposition
Now read rows first, then columns, concatenated. Group by pairs of two digits to form new Polybius coordinates:
Read : 1 2 3 2 1 3 4 4 3 5 = 12 32 13 44 35
Polyb : 12=B, 32=M, 13=C, 44=U, 35=P
(The exact details depend on block size and implementation.) The ciphertext is the final read.
For CIPHERCHRONICLE, full bifid yields approximately BMDBSLHCUPHMOOE.
Variants
- Trifid (Delastelle) — 3D version with a 3×3×3 cube; each letter gives three coordinates.
- Block-wise bifid — applied on fixed-size blocks (often 5 or 7 letters), limiting diffusion.
- Modern fractionation ciphers — DES, AES rely on diffusion principles that descend from bifid.
Strengths and weaknesses
Strengths
- Diffusion: a single plain letter affects two cipher letters, making local analysis far harder.
- Still applicable by hand with patience and a grid in front of you.
- Ciphertext digram frequencies look nothing like the plaintext’s.
Weaknesses
- Small-block bifid remains attackable: within a 5-letter block, each letter influences only 10 digits.
- Partially known plaintext (cribs) lets you rebuild the Polybius grid.
- The Polybius grid is the sole key anchor: guessing the grid breaks everything.
In CipherChronicle
Bifid is a bridge to modern diffusion: players discover that a plain letter can be diluted across several cipher letters — the core idea behind AES. Puzzles can display the fractionation steps to make the mechanic concrete.
Grid
- 1
Ciphertext
Muddled distribution — each plain letter influences two non-adjacent cipher letters.
- 2
Underlying Polybius grid
Each letter was converted to (row, column), and the two coordinates were then processed separately.
- 3
Hypothesis: block-wise bifid, keyed grid
The text was split into blocks, rows and columns concatenated, then re-read in pairs.
- 4
Coordinate reconstruction
Split the ciphertext into two halves (rows, then columns), then re-pair to recover the letters.
- 5
Message revealed
After inverse fractionation, the plaintext reassembles.