The Fractionated Morse Cipher is a classical encryption method that combines Morse code encoding with substitution techniques. It works by first converting plaintext into Morse code, then grouping the resulting symbols into fixed-length units, and finally substituting those groups using a keyed alphabet. This multi-stage process produces ciphertext that obscures both the original letters and the structure of Morse code.
The cipher is conceptually similar to systems like the Bifid Cipher, in that it separates and recombines components of the plaintext. However, instead of working with coordinates, the Fractionated Morse Cipher operates on Morse symbols (dots, dashes, and separators). A keyword is used to generate a substitution alphabet, which maps grouped Morse sequences into ciphertext letters.
Fractionated Morse Cipher: Encoding
To encrypt using the Fractionated Morse Cipher, the plaintext is first converted into Morse code. The Morse sequence is then padded and divided into equal-sized groups (typically trigrams), which are mapped to letters using a keyed substitution alphabet. For example:
Plaintext: HELLO
Keyword: KEYWORD
Step 1: Convert to Morse code
H E L L O
.... . .-.. .-.. ---
Morse (with separators):
....x.x.-..x.-..x---
Step 2: Group into trigrams
... .x. x.- ..x .-. --
Step 3: Substitute using keyed alphabet
Ciphertext:
KDQYWAJThe keyword KEYWORD is used to construct a substitution table that maps each possible Morse trigram to a letter. Padding characters are added if necessary to complete the final group.
Fractionated Morse Cipher: Decoding
Decoding reverses the process by mapping each ciphertext letter back to its corresponding Morse trigram, reconstructing the Morse sequence, and then translating it back into plaintext:
Ciphertext: KDQYWAJ
Keyword: KEYWORD
Step 1: Convert letters back to Morse trigrams
Step 2: Reassemble Morse sequence
Step 3: Decode Morse to plaintext
Plaintext:
HELLOAccurate decoding depends on correctly reconstructing the Morse sequence, including separators between letters.
Fractionated Morse Cipher: Notes
The Fractionated Morse Cipher combines multiple encoding layers to increase complexity. Key characteristics include:
- Type: Fractionation cipher (Morse + substitution)
- Input transformation: plaintext → Morse code
- Grouping: fixed-length units (typically 3 symbols)
- Key: keyword used to generate substitution alphabet
- Symbols: dot (.), dash (-), and separator (commonly “x”)
- Strengths: obscures both letter frequency and Morse structure
- Weaknesses: vulnerable if substitution mapping or Morse structure is known
The Fractionated Morse Cipher demonstrates how combining encoding systems can significantly increase complexity. By layering Morse code with substitution, it provides a strong educational example of multi-stage encryption and the concept of fractionation in classical cryptography.