Maybe.

If it does, we probably need to know a keyword alphabet and/or a transposition method it was combined with.

The Playfair cipher uses a 5 by 5 table containing a key word or phrase. Memorization of the keyword and 4 simple rules was all that was required to create the 5 by 5 table and use the cipher.

To generate the key table, one would first fill in the spaces in the table with the letters of the keyword (dropping any duplicate letters), then fill the remaining spaces with the rest of the letters of the alphabet in order (usually omitting “Q” to reduce the alphabet to fit, other versions put both “I” and “J” in the same space). The key can be written in the top rows of the table, from left to right, or in some other pattern, such as a spiral beginning in the upper-left-hand corner and ending in the center. The keyword together with the conventions for filling in the 5 by 5 table constitute the cipher key.

To encrypt a message, one would break the message into digraphs (groups of 2 letters) such that, for example, “HelloWorld” becomes “HE LL OW OR LD”, and map them out on the key table. The two letters of the digraph are considered as the opposite corners of a rectangle in the key table. Note the relative position of the corners of this rectangle. Then apply the following 4 rules, in order, to each pair of letters in the plaintext:

  • If both letters are the same (or only one letter is left), add an “X” after the first letter. Encrypt the new pair and continue. Some variants of Playfair use “Q” instead of “X”, but any uncommon monograph will do.
  • If the letters appear on the same row of your table, replace them with the letters to their immediate right respectively (wrapping around to the left side of the row if a letter in the original pair was on the right side of the row).
  • If the letters appear on the same column of your table, replace them with the letters immediately below respectively (wrapping around to the top side of the column if a letter in the original pair was on the bottom side of the column).
  • If the letters are not on the same row or column, replace them with the letters on the same row respectively but at the other pair of corners of the rectangle defined by the original pair. The order is important – the first letter of the encrypted pair is the one that lies on the same row as the first letter of the plaintext pair.

To decrypt, use the inverse of these 4 rules (dropping any extra “X”s (or “Q”s) that don’t make sense in the final message when you finish).

With a straight playfair we get:

MDGU
TPYNHIQPCRPMKGBBVGMQAVULSMHFSST
YYRRTFTSSKPZZVBYOFPTEFDYGLHCMZO
YQROVKUPBMEIVYYODEKHPZKSEQKPDBS

With Kryptos as a keyword:

SCRY
KDUBHDVICASIMDBBYMVSZLNTPLDPSSC
KZYLCLISSDRZZYFKQRIKIMOUMMGGXPT
ZRYQWHTRXFIOUZKQOHNDOKDZOWDROBP

With Hydra as a keyword:

UIMY
HUUSBAWIFOQIMBBBXEMDWPSQAMCNSSP
OZQSTLOSSCLZZZDONLMWHNHULMGGICV
ZPSNXGVPZEYLUZONEYNBIVBHHZCLGYF

You can see that Playfairs use digraphs which means that you need an even number of ciphertext letters.  It's perhaps more likely that an uneven polygraphic substitution system is at work in K4 but this does not preclude Playfair, it just makes it unlikely in comparison.

We'd still need the right keyword and transposition system as well.

I doubt Playfairs are capable of resisting a dedicated cryptanalyst by themselves.

-Kryptosfan