A Polyalphabetic Cipher of Lord Feilding (1634-1639)

An undeciphered letter is preserved in Papers connected with Lord Feilding's Embassy in Italy held by Warwickshire County Record Office as CR 2017/C157/4 (catalogue entry). According to the county record office's website, it is accompanied by the key with an explanation in French (CR 2017/C157/2), which allows revealing the plaintext of the letter in French.

Polyalphabetic Cipher

The letter employs a polyalphabetic substitution cipher, which uses three substitution tables in turn. Each cipher permutes letters in pairs.

aeiouhmprt
bcdfglnqsx
tsrqpnmlhg
ufodicebax
ufgdlcsbao
eiqnhmprtx

To encipher "soldat", the first letter "s", which is found to be paired with "r" in the first table, is enciphered as "r." The next letter "o" is sought in the second table and becomes "r"; the third letter "l" becomes "h" according to the third table. The first table was used again to encipher the fourth letter "d" to "i", and so on. The word "soldat" becomes "rrhiha" in the ciphertext. It can be seen that the same "r" in the ciphertext may correspond to plaintext "s" or "o" (or "b" if the third table is used), which makes codebreaking difficult.

To add further security, the first and third words in every line are nulls (i.e., to be ignored).

Deciphering

The ciphertext (as seen in an image at the county record office's website) is as follows (with nulls removed).

rrhiha ft cceu hm rftbumxdf
ux bu qhfrhdx qur xumf
pbxur quribdu uxqu ereshqc
ded fxdmdx ftmf tgnem
lfcc ncnlcf ugt ftmf tgnem
haxuteaummdx ma rhcp cfscotmmu
iheetdc sxsuemm gghn dm hcf td
queregmbr pu hpu gcu erdgmbrhaxprd
bstuc met qtmf hbdecbhc pu hmes
stdu ibpbc haxhdxpxm he mhhlmego
nc bugo uxha dm hcf shhfmf fc
bur bxgm ux efmffmttmu nbcp
hmego uribdu fcbugo ssrccup nrd
befxpu nh ssracnadrd ' rp mc fxmu
ncf xosfepusf fcbur ouercnhdim
thmes feqmbdmsof fcbur stdu

With the above key, this can be (more or less) deciphered as follows.

... soldat ou même le bourgeois et le paisant des gens sages, d'esprit, et de courage qui soient sans aucun bien deches eux sans aucun atttache[m]ent et sans espéran[c]e d'aucune fortune quad je les ai decouvers, je lie une conversattion afagn? eux dans la quelle je leur fait faire attantion au [m]alheur de leur état, je les plains, je les loue et m'insinuant dans lauur? esprit, je leur promets mon amitié, ma protection si ce sont des officiers, je les recommande a leur superie[urs?] je les fait ....

(Several errors are found in the ciphertext. Especially, the proper ordering in using the three tables is broken at least twice, as indicated with a check sign in the image to the right.)

Lord Feilding's Correspondence

Basil Feilding (Wikipedia) (styled Lord Feilding before succeeding his father as 2nd Earl of Denbigh) was King Charles I's ambassador to Venice, then Turin from 1634 to 1639 (Report p.vi, xi, xii).

Letters from Peter Morton, agent at Turin (Report p.vi), occasionally include words in cipher, of which a key is among the papers (Report p.12). It appears to be a figure code as was becoming common at the time (see another article). For example, "93" and "94" represent "Montagu" and "French ambassador", respectively (Report p.16).

Different kinds of ciphers may have been used with other correspondents (p.40 with Sir Alex Gordoun; p.44 with Duc de Candale).

His correspondence with foreigners was occasionally in French (Report p.13 with Monsieur Chateauroux; p.15 with Marquis de Pougny, French ambassador in England; p.24 with Syndicate and Council of Geneva; p.44 with Duc de Candale ). His secret correspondence with the Marquis Leganes and the Spanish governor of Vercelli (Report xii) may have been in French as well.

Memorandum

#!/usr/local/bin/perl
# Lord Feilding暗号
# 3つの換字アルファベットを順に使っていく
# (このプログラムでは,「順に」は適用せず,暗号化のエラーを考慮して,候補の原字をすべて挙げることにする)
$alphabet0=("abcdefghilmnopqrstux");
$alphabet1=("baeicouldhnmfqpsrxgt");
$alphabet2=("hlnqmsxapbecridofutg");
$alphabet3=("trmnuiqlfhcdxsgbpaeo");
$cipher=("rrhiha ft cceu hm rftbumxdf / ux bu qhfrhdx qur xumf / pbxur quribdu uxqu ereshqc / ded fxdmdx ftmf tgnem / lfcc ncnlcf ugt ftmf tgnem / haxuteaummdx ma rhcp cfscotmmu / iheetdc sxsuemm gghn dm hcf td / queregmbr pu hpu gcu erdgmbrhaxprd / bstuc met qtmf hbdecbhc pu hmes / stdu ibpbc haxhdxpxm he mhhlmego / nc bugo uxha dm hcf shhfmf fc / bur bxgm ux efmffmttmu nbcp / hmego uribdu fcbugo ssrccup nrd / befxpu nh ssracnadrd ' rp mc fxmu / ncf xosfepusf fcbur ouercnhdim / thmes feqmbdmsof fcbur stdu");
for ($i=0; $i<length($cipher); $i++)
{ $cipherletter = substr($cipher,$i,1); #暗号文の1文字
if (! ($cipherletter =~/[a-z]/) ) {print "$line\n"; next;}
$k = index($alphabet0,$cipherletter); #その1文字が何番目か
$letter1 = substr($alphabet1,$k,1);
$letter2 = substr($alphabet2,$k,1);
$letter3 = substr($alphabet3,$k,1);
print "$letter1 $letter2 $letter3\n";
}

References

Civil War Ciphers: Lord Feilding's Mystery Coded Letter (Nearly) Cracked! (2016) (Warwickshire County Record Office)

CR 2017/C157/1-4 (catalogue entry) ... Location of the source material.

Report on the Manuscripts of the Earl of Denbigh: Preserved at Newnham Paddox, Warwickshire, (a.k.a. H.M.C.'s report on the Denbigh MSS or HMC's report on the Denbigh papers) Part V (1911) (Internet Archive)

CR 2017/C48 (catalogue entry) ... Despatches and letters received by Basil Lord Feilding as Ambassador in Italy, most of which are calendared in the Report above.



©2018 S.Tomokiyo
First posted on 16 2018. Last modified on 16 2018.
Cryptiana: Articles on Historical Cryptography
inserted by FC2 system