- Notifications
You must be signed in to change notification settings - Fork 19.9k
/
Copy pathColumnarTranspositionCipher.java
186 lines (172 loc) · 6.46 KB
/
ColumnarTranspositionCipher.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
packagecom.thealgorithms.ciphers;
importjava.util.Objects;
/**
* Columnar Transposition Cipher Encryption and Decryption.
*
* @author <a href="https://github.com/freitzzz">freitzzz</a>
*/
publicfinalclassColumnarTranspositionCipher {
privateColumnarTranspositionCipher() {
}
privatestaticStringkeyword;
privatestaticObject[][] table;
privatestaticStringabecedarium;
publicstaticfinalStringABECEDARIUM = "abcdefghijklmnopqrstuvwxyzABCDEFG"
+ "HIJKLMNOPQRSTUVWXYZ0123456789,.;:-@";
privatestaticfinalStringENCRYPTION_FIELD = "≈";
privatestaticfinalcharENCRYPTION_FIELD_CHAR = '≈';
/**
* Encrypts a certain String with the Columnar Transposition Cipher Rule
*
* @param word Word being encrypted
* @param keyword String with keyword being used
* @return a String with the word encrypted by the Columnar Transposition
* Cipher Rule
*/
publicstaticStringencrypt(finalStringword, finalStringkeyword) {
ColumnarTranspositionCipher.keyword = keyword;
abecedariumBuilder();
table = tableBuilder(word);
Object[][] sortedTable = sortTable(table);
StringBuilderwordEncrypted = newStringBuilder();
for (inti = 0; i < sortedTable[0].length; i++) {
for (intj = 1; j < sortedTable.length; j++) {
wordEncrypted.append(sortedTable[j][i]);
}
}
returnwordEncrypted.toString();
}
/**
* Encrypts a certain String with the Columnar Transposition Cipher Rule
*
* @param word Word being encrypted
* @param keyword String with keyword being used
* @param abecedarium String with the abecedarium being used. null for
* default one
* @return a String with the word encrypted by the Columnar Transposition
* Cipher Rule
*/
publicstaticStringencrypt(Stringword, Stringkeyword, Stringabecedarium) {
ColumnarTranspositionCipher.keyword = keyword;
ColumnarTranspositionCipher.abecedarium = Objects.requireNonNullElse(abecedarium, ABECEDARIUM);
table = tableBuilder(word);
Object[][] sortedTable = sortTable(table);
StringBuilderwordEncrypted = newStringBuilder();
for (inti = 0; i < sortedTable[0].length; i++) {
for (intj = 1; j < sortedTable.length; j++) {
wordEncrypted.append(sortedTable[j][i]);
}
}
returnwordEncrypted.toString();
}
/**
* Decrypts a certain encrypted String with the Columnar Transposition
* Cipher Rule
*
* @return a String decrypted with the word encrypted by the Columnar
* Transposition Cipher Rule
*/
publicstaticStringdecrypt() {
StringBuilderwordDecrypted = newStringBuilder();
for (inti = 1; i < table.length; i++) {
for (Objectitem : table[i]) {
wordDecrypted.append(item);
}
}
returnwordDecrypted.toString().replaceAll(ENCRYPTION_FIELD, "");
}
/**
* Builds a table with the word to be encrypted in rows by the Columnar
* Transposition Cipher Rule
*
* @return An Object[][] with the word to be encrypted filled in rows and
* columns
*/
privatestaticObject[][] tableBuilder(Stringword) {
Object[][] table = newObject[numberOfRows(word) + 1][keyword.length()];
char[] wordInChars = word.toCharArray();
// Fills in the respective numbers for the column
table[0] = findElements();
intcharElement = 0;
for (inti = 1; i < table.length; i++) {
for (intj = 0; j < table[i].length; j++) {
if (charElement < wordInChars.length) {
table[i][j] = wordInChars[charElement];
charElement++;
} else {
table[i][j] = ENCRYPTION_FIELD_CHAR;
}
}
}
returntable;
}
/**
* Determines the number of rows the table should have regarding the
* Columnar Transposition Cipher Rule
*
* @return an int with the number of rows that the table should have in
* order to respect the Columnar Transposition Cipher Rule.
*/
privatestaticintnumberOfRows(Stringword) {
if (word.length() % keyword.length() != 0) {
return (word.length() / keyword.length()) + 1;
} else {
returnword.length() / keyword.length();
}
}
/**
* @return charValues
*/
privatestaticObject[] findElements() {
Object[] charValues = newObject[keyword.length()];
for (inti = 0; i < charValues.length; i++) {
intcharValueIndex = abecedarium.indexOf(keyword.charAt(i));
charValues[i] = charValueIndex > -1 ? charValueIndex : null;
}
returncharValues;
}
/**
* @return tableSorted
*/
privatestaticObject[][] sortTable(Object[][] table) {
Object[][] tableSorted = newObject[table.length][table[0].length];
for (inti = 0; i < tableSorted.length; i++) {
System.arraycopy(table[i], 0, tableSorted[i], 0, tableSorted[i].length);
}
for (inti = 0; i < tableSorted[0].length; i++) {
for (intj = i + 1; j < tableSorted[0].length; j++) {
if ((int) tableSorted[0][i] > (int) table[0][j]) {
Object[] column = getColumn(tableSorted, tableSorted.length, i);
switchColumns(tableSorted, j, i, column);
}
}
}
returntableSorted;
}
/**
* @return columnArray
*/
privatestaticObject[] getColumn(Object[][] table, introws, intcolumn) {
Object[] columnArray = newObject[rows];
for (inti = 0; i < rows; i++) {
columnArray[i] = table[i][column];
}
returncolumnArray;
}
privatestaticvoidswitchColumns(Object[][] table, intfirstColumnIndex, intsecondColumnIndex, Object[] columnToSwitch) {
for (inti = 0; i < table.length; i++) {
table[i][secondColumnIndex] = table[i][firstColumnIndex];
table[i][firstColumnIndex] = columnToSwitch[i];
}
}
/**
* Creates an abecedarium with all available ascii values.
*/
privatestaticvoidabecedariumBuilder() {
StringBuildert = newStringBuilder();
for (inti = 0; i < 256; i++) {
t.append((char) i);
}
abecedarium = t.toString();
}
}