-
Notifications
You must be signed in to change notification settings - Fork 0
/
PlayfairCipher.java
218 lines (205 loc) · 8.07 KB
/
PlayfairCipher.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
import java.awt.Point;
import java.util.Scanner;
public class PlayfairCipher {
// length of digraph array
private int length = 0;
// creates a matrix for Playfair cipher
private String[][] table;
// main() method to test Playfair method
public static void main(String args[]) {
PlayfairCipher pf = new PlayfairCipher();
pf.start();
}
// main run of the program, Playfair method
// constructor of the class
private PlayfairCipher() {
start();
}
private void start()
{
// prompts the user for the keyword to use for encoding & creates tables
System.out.print("Enter the key for Playfair cipher: ");
Scanner sc = new Scanner(System.in);
String key = parseString(sc);
while (key.equals(""))
key = parseString(sc);
table = this.cipherTable(key);
// prompts the user for the message to be encoded
System.out.print("Enter the plaintext to be enciphered: ");
// System.out.println("using the previously given keyword");
String input = parseString(sc);
while (input.equals(""))
input = parseString(sc);
// encodes and then decodes the encoded message
String output = cipher(input);
String decodedOutput = decode(output);
// output the results to a user
this.keyTable(table);
this.printResults(output, decodedOutput);
}
// parses an input string to remove numbers, punctuation,
// replaces any J's with I's and makes string all caps
private String parseString(Scanner sc) {
String parse = sc.nextLine();
// converts all the letters in upper case
parse = parse.toUpperCase();
// the string to be substituted by space for each match (A to Z)
parse = parse.replaceAll("[^A-Z]", "");
// replace the letter J by I
parse = parse.replace("J", "I");
return parse;
}
// creates the cipher table based on some input string (already parsed)
private String[][] cipherTable(String key) {
// creates a matrix of 5*5
String[][] playfairTable = new String[5][5];
String keyString = key + "ABCDEFGHIKLMNOPQRSTUVWXYZ";
// fill string array with the empty string
for (int i = 0; i < 5; i++)
for (int j = 0; j < 5; j++)
playfairTable[i][j] = "";
for (int k = 0; k < keyString.length(); k++) {
boolean repeat = false;
boolean used = false;
for (int i = 0; i < 5; i++) {
for (int j = 0; j < 5; j++) {
if (playfairTable[i][j].equals("" + keyString.charAt(k))) {
repeat = true;
} else if (playfairTable[i][j].equals("") && !repeat && !used) {
playfairTable[i][j] = "" + keyString.charAt(k);
used = true;
}
}
}
}
return playfairTable;
}
// cipher: takes input (all upper-case), encodes it, and returns the output
private String cipher(String in) {
length = (int) in.length() / 2 + in.length() % 2;
// insert x between double-letter digraphs & redefines "length"
for (int i = 0; i < (length - 1); i++) {
if (in.charAt(2 * i) == in.charAt(2 * i + 1)) {
in = new StringBuffer(in).insert(2 * i + 1, 'X').toString();
length = (int) in.length() / 2 + in.length() % 2;
}
}
// ------------makes plaintext of even length--------------
// creates an array of digraphs
String[] digraph = new String[length];
// loop iterates over the plaintext
for (int j = 0; j < length; j++) {
// checks whether the plaintext is of even length or not
if (j == (length - 1) && in.length() / 2 == (length - 1))
// if not addends X at the end of the plaintext
in = in + "X";
digraph[j] = in.charAt(2 * j) + "" + in.charAt(2 * j + 1);
}
// encodes the digraphs and returns the output
String out = "";
String[] encDigraphs = new String[length];
encDigraphs = encodeDigraph(digraph);
for (int k = 0; k < length; k++)
out = out + encDigraphs[k];
return out;
}
// ---------------encryption logic-----------------
// encodes the digraph input with the cipher's specifications
private String[] encodeDigraph(String di[]) {
String[] encipher = new String[length];
for (int i = 0; i < length; i++) {
char a = di[i].charAt(0);
char b = di[i].charAt(1);
int r1 = (int) getPoint(a).getX();
int r2 = (int) getPoint(b).getX();
int c1 = (int) getPoint(a).getY();
int c2 = (int) getPoint(b).getY();
// executes if the letters of digraph appear in the same row
// in such case shift columns to right
if (r1 == r2) {
c1 = (c1 + 1) % 5;
c2 = (c2 + 1) % 5;
}
// executes if the letters of digraph appear in the same column
// in such case shift rows down
else if (c1 == c2) {
r1 = (r1 + 1) % 5;
r2 = (r2 + 1) % 5;
}
// executes if the letters of digraph appear in the different rows and different
// column
// in such case swap the first column with the second column
else {
int temp = c1;
c1 = c2;
c2 = temp;
}
// performs the table look-up and puts those values into the encoded array
encipher[i] = table[r1][c1] + "" + table[r2][c2];
}
return encipher;
}
// -----------------------decryption logic---------------------
// decodes the output given from the cipher and decode methods (opp. of encoding
// process)
private String decode(String out) {
String decoded = "";
for (int i = 0; i < out.length() / 2; i++) {
char a = out.charAt(2 * i);
char b = out.charAt(2 * i + 1);
int r1 = (int) getPoint(a).getX();
int r2 = (int) getPoint(b).getX();
int c1 = (int) getPoint(a).getY();
int c2 = (int) getPoint(b).getY();
if (r1 == r2) {
c1 = (c1 + 4) % 5;
c2 = (c2 + 4) % 5;
} else if (c1 == c2) {
r1 = (r1 + 4) % 5;
r2 = (r2 + 4) % 5;
} else {
// swapping logic
int temp = c1;
c1 = c2;
c2 = temp;
}
decoded = decoded + table[r1][c1] + table[r2][c2];
}
// returns the decoded message
return decoded;
}
// returns a point containing the row and column of the letter
private Point getPoint(char c) {
Point pt = new Point(0, 0);
for (int i = 0; i < 5; i++)
for (int j = 0; j < 5; j++)
if (c == table[i][j].charAt(0))
pt = new Point(i, j);
return pt;
}
// function prints the key-table in matrix form for Playfair cipher
private void keyTable(String[][] printTable) {
System.out.println("Playfair Cipher Key Matrix: ");
System.out.println();
// loop iterates for rows
for (int i = 0; i < 5; i++) {
// loop iterates for column
for (int j = 0; j < 5; j++) {
// prints the key-table in matrix form
System.out.print(printTable[i][j] + " ");
}
System.out.println();
}
System.out.println();
}
// method that prints all the results
private void printResults(String encipher, String dec) {
System.out.print("Encrypted Message: ");
// prints the encrypted message
System.out.println(encipher);
System.out.println();
System.out.print("Decrypted Message: ");
// prints the decrypted message
System.out.println(dec);
}
}