Cipher methods Transposition
AMSCO cipher
Columnar transposition where letters are written in alternating blocks of 1 then 2, scrambling reconstruction.
- Family :
- Transposition
- Difficulty :
- Advanced
- Era :
- 19th century, A. M. Scott
- Inventor :
- A. M. Scott (AMSCO = his initials)
Also known as : alternating-length columnar transposition
The AMSCO cipher is a variation of columnar transposition where writing into the grid alternates between 1- and 2-letter blocks. This twist makes reconstructing the grid much harder, because each row’s effective width is no longer regular.
Principle
Write the plaintext into a grid under a keyword, but this time each cell may hold 1 or 2 letters, in alternation.
- Row 1 starts with a 1-letter block, then 2, then 1, etc. (or the reverse by convention).
- Row 2 starts with a 2-letter block, then 1, then 2, etc.
- Alternate until the text is exhausted.
- Columns are read in the keyword’s alphabetic order, as in classic transposition.
Example
Plaintext CIPHERCHRONICLE, keyword KEY (order E = 1, K = 2, Y = 3):
Keyword : K E Y
Pattern : 1 2 1
2 1 2
1 2 1
2 1 2
Grid :
Row 1 : C | IP | H
Row 2 : ER | C | HR
Row 3 : O | NI | C
Row 4 : LE | ?? | ??
Reading by column in order E, K, Y:
- Column E (row 1 = IP, row 2 = C, row 3 = NI) →
IPCNI - Column K (row 1 = C, row 2 = ER, row 3 = O, row 4 = LE) →
CEROLE - Column Y (row 1 = H, row 2 = HR, row 3 = C) →
HHRC
Ciphertext: IPCNICEROLEHHRC (15 chars).
Strengths and weaknesses
Strengths
- Ambiguous reconstruction: the attacker must guess not only column order (as in classic transposition) but also the alternation pattern and its starting point.
- Less symmetry: columns have uneven lengths, making cross-anagram comparison harder.
Weaknesses
- Still pure transposition: letter frequency distribution is unchanged.
- The number of possible alternation patterns stays small (essentially: 1-2-1-2 or 2-1-2-1), times the number of column orders.
- Multiple same-length ciphertexts still allow cross-anagramming.
Variants
- Classic columnar transposition — fixed-size blocks (1 letter), simpler but weaker.
- Double AMSCO — alternation applied twice with different keywords. Extremely hard to break by hand.
- Myszkowski — another columnar variant where identical key letters read together.
In CipherChronicle
AMSCO is an expert-level transposition requiring the player to spot the alternation pattern. Its grids can present several candidate patterns (1-2-1, 2-1-2, 1-1-2-2…) to decide between.
Grid
- 1
Ciphertext
Normal letter distribution — so transposition — but the letters seem oddly packed.
- 2
Alternating pattern
The grid was filled with alternating 1- and 2-letter blocks, odd rows starting with 2.
- 3
Hypothesis: keyword « KEY », 1-2 alternation
Column order and block lengths must both be identified.
- 4
Reconstruction of the alternating grid
Once the pattern is guessed, reinsert letters column by column into their blocks.
- 5
Message revealed
The plaintext surfaces after reading row by row.