Tool to decrypt/encrypt AMSCO automatically. AMSCO is a transposition ciphering algorithm created by A.M.Scott which uses column transpositions.
AMSCO Cipher - dCode
Tag(s) : Transposition Cipher
dCode is free and its tools are a valuable help in games, maths, geocaching, puzzles and problems to solve every day!
A suggestion ? a feedback ? a bug ? an idea ? Write to dCode!
AMSCO is a (incomplete) columnar transposition cipher performing a permutation of an alternation of bigrams and unigrams of the plaintext.
AMSCO Encryption consists in writing a text in a grid according to a cutting sequence then use a permutation key to switch columns.
Example: Encrypt the message DCODEAMSCO, with a cutting sequence 1,2 (alternation of 1 letter then 2 letters in the grid, both in rows and in columns)
Select a permutation key (of length L), and write the message in lines, cut over L columns.
Example: If the key is KEY (equivalent to 2,1,3) of length 3, then write the message over 3 columns:
\ | 1 | 2 | 3 |
---|---|---|---|
D | CO | D | |
EA | M | SC | |
O |
Read the grid in columns, in the order of the key (this reading serves as permutation).
Example: Column 2 (COM) then 1 (DEAO), and the 3 (DSC). The message is COMDEAODSC.
AMSCO decryption requires knowledge of the permutation key (of length L) and the cutting sequence (usually 1,2 or 2,1).
Example: Decrypt the message COMDEAODSC (of 10-characters length) with the key KEY (equivalent to the permutation 2,1,3) of length 3, and cutting sequence 1.2.
Create a table with L columns, in which the number of characters are noted in each cell (in respect to the cutting sequence and limited by the length of the message).
Example: 1,2 for 10 characters corresponds to (1+2+1+2+1+2+1+0+0 = 10) :
\ | 1 | 2 | 3 |
---|---|---|---|
1 | 2 | 1 | |
2 | 1 | 2 | |
1 | 0 | 0 |
Write the message in the table in columns following the order of the columns indicated by the key.
Example: Write CO, then M in column 2, then D,EA,O in column 1, then D, DC in column 3. This leads to the grid:
\ | 1 | 2 | 3 |
---|---|---|---|
D | CO | D | |
EA | M | SC | |
O |
The plain message is transcribed by reading the table in lines.
Example: Reading each lines gives the original plain text is DCODEAMSCO.
The text must alternate sizes of cuts (even if the key size is even) which then should form diagonal sets:
Example: A grid of width 3, cut by (1,2):
\ | 1 | 2 | 3 |
---|---|---|---|
1 | 2 | 1 | |
2 | 1 | 2 | |
1 | 2 | 1 |
Example: A grid of width 3, cut by (2,1):
\ | 1 | 2 | 3 |
---|---|---|---|
2 | 1 | 2 | |
1 | 2 | 1 | |
2 | 1 | 2 |
Example: A grid of width 4, cut by (1,2):
\ | 1 | 2 | 3 | 4 |
---|---|---|---|---|
1 | 2 | 1 | 2 | |
2 | 1 | 2 | 1 | |
1 | 2 | 1 | 2 |
Example: A grid of width 3, cut by (3,2,1):
\ | 1 | 2 | 3 |
---|---|---|---|
3 | 2 | 1 | |
2 | 1 | 3 | |
1 | 3 | 2 |
No need to fill the grid with null letters if a cell is empty or incomplete.
The ciphered message is subjected to a single transposition, so it has an index of coincidence similar to the one of the plain text.
It is possible to try to infer the key length by analyzing bigrams obtained after writing in columns.
AMSCO is a variant of the classical transposition cipher. It adds the cut sequence that can be more complex than the usual 1,2.
AMSCO dates from the 19th and bear the initials of its author A. M. Scott
dCode retains ownership of the "AMSCO Cipher" source code. Any algorithm for the "AMSCO Cipher" algorithm, applet or snippet or script (converter, solver, encryption / decryption, encoding / decoding, ciphering / deciphering, breaker, translator), or any "AMSCO Cipher" functions (calculate, convert, solve, decrypt / encrypt, decipher / cipher, decode / encode, translate) written in any informatic language (Python, Java, PHP, C#, Javascript, Matlab, etc.) or any database download or API access for "AMSCO Cipher" or any other element are not public (except explicit open source licence like Creative Commons). Same with the download for offline use on PC, mobile, tablet, iPhone or Android app.
Reminder: dCode is an educational and teaching resource, accessible online for free and for everyone.
The content of the page "AMSCO Cipher" and its results may be freely copied and reused, including for commercial purposes, provided that dCode.fr is cited as the source.
Exporting the results is free and can be done simply by clicking on the export icons ⤓ (.csv or .txt format) or ⧉ (copy and paste).
To cite dCode.fr on another website, use the link:
In a scientific article or book, the recommended bibliographic citation is: AMSCO Cipher on dCode.fr [online website], retrieved on 2025-04-22,