-
-
Notifications
You must be signed in to change notification settings - Fork 241
/
PolybiusSquare.js
322 lines (287 loc) · 9.12 KB
/
PolybiusSquare.js
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
import ArrayUtil from '../ArrayUtil'
import Encoder from '../Encoder'
import InvalidInputError from '../Error/InvalidInput'
const meta = {
name: 'polybius-square',
title: 'Polybius square',
category: 'Polybius square ciphers',
type: 'encoder'
}
/**
* Encoder brick for Polybius square encoding and decoding
*/
export default class PolybiusSquareEncoder extends Encoder {
/**
* Returns brick meta.
* @return {object}
*/
static getMeta () {
return meta
}
/**
* Constructor
*/
constructor () {
super()
this.addSettings([
{
name: 'alphabet',
type: 'text',
value: 'abcdefghiklmnopqrstuvwxyz',
uniqueChars: true,
minLength: 2,
validateValue: this.validateAlphabetValue.bind(this),
caseSensitivity: false
},
{
name: 'rows',
type: 'text',
value: '12345',
uniqueChars: true,
minLength: 2,
width: 6,
randomizable: false,
caseSensitivity: false
},
{
name: 'columns',
type: 'text',
value: '12345',
uniqueChars: true,
minLength: 2,
width: 6,
randomizable: false,
caseSensitivity: false
},
{
name: 'separator',
type: 'text',
value: '',
randomizable: false,
caseSensitivity: false,
validateValue: this.validateSeparatorValue.bind(this)
},
{
name: 'caseSensitivity',
type: 'boolean',
width: 6,
value: false,
randomizable: false
},
{
name: 'includeForeignChars',
type: 'boolean',
label: 'Foreign Chars',
width: 6,
value: false,
randomizable: false,
trueLabel: 'Include',
falseLabel: 'Ignore'
}
])
}
/**
* Triggered before performing encode or decode on given content.
* @param {Chain} content
* @param {boolean} isEncode True for encoding, false for decoding
* @return {number[]|string|Uint8Array|Chain} Filtered content
*/
willTranslate (content, isEncode) {
// Lowercase content if case sensitivity is set to false
if (!this.getSettingValue('caseSensitivity')) {
content = content.toLowerCase()
}
if (isEncode) {
// Standard Polybius square does not distinguish between 'i' and 'j'
// Replace all 'j' chars by 'i', if only 'i' is part of the alphabet
const alphabet = this.getSettingValue('alphabet').getCodePoints()
if (alphabet.indexOf(105) !== -1 && alphabet.indexOf(106) === -1) {
content = content.getString().replace(/j/g, 'i')
}
}
return content
}
/**
* Performs encode on given content.
* @protected
* @param {Chain} content
* @return {number[]|string|Uint8Array|Chain} Encoded content
*/
performEncode (content) {
const alphabet = this.getSettingValue('alphabet').getCodePoints()
const separator = this.getSettingValue('separator').getCodePoints()
const includeForeignChars = this.getSettingValue('includeForeignChars')
const rows = this.getSettingValue('rows').getCodePoints()
const columns = this.getSettingValue('columns').getCodePoints()
const width = columns.length
const input = content.getCodePoints()
const separatorLength = separator.length
const inputLength = input.length
// Create a fixed-size array with the maximum number of result elements
const result = new Array(inputLength * (separatorLength + 2))
let codePoint, index, k
let j = 0
let isForeignPart = false
for (let i = 0; i < inputLength; i++) {
codePoint = input[i]
index = alphabet.indexOf(codePoint)
// Add separator
if (j > 0 && (index !== -1 || (includeForeignChars && !isForeignPart))) {
for (k = 0; k < separatorLength; k++) {
result[j++] = separator[k]
}
}
isForeignPart = false
if (index !== -1) {
// Encode Polybius square coordinates
result[j++] = rows[Math.floor(index / width)]
result[j++] = columns[index % width]
} else if (includeForeignChars) {
// Add foreign character
result[j++] = codePoint
isForeignPart = true
}
}
return result.slice(0, j)
}
/**
* Performs decode on given content.
* @protected
* @param {Chain} content
* @return {number[]|string|Uint8Array|Chain} Decoded content
*/
performDecode (content) {
const alphabet = this.getSettingValue('alphabet').getCodePoints()
const separator = this.getSettingValue('separator').getCodePoints()
const includeForeignChars = this.getSettingValue('includeForeignChars')
const rows = this.getSettingValue('rows').getCodePoints()
const columns = this.getSettingValue('columns').getCodePoints()
// Ignore all separators inside the given content
const input = ArrayUtil.replaceSlice(content.getCodePoints(), separator)
const alphabetLength = alphabet.length
const width = columns.length
const inputLength = input.length
const result = new Array(inputLength)
let i = 0
let j = 0
let row, column, index
while (i < inputLength) {
// Find the next valid row character
row = null
while (row === null && i < inputLength) {
index = rows.indexOf(input[i])
if (index !== -1) {
// Found row character
row = index
} else if (includeForeignChars) {
// Include foreign character
result[j++] = input[i]
}
i++
}
// Find the next valid column character
column = null
while (column === null && i < inputLength) {
index = rows.indexOf(input[i])
if (index !== -1) {
// Found column character
column = index
} else if (includeForeignChars) {
// Include foreign character
result[j++] = input[i]
}
i++
}
if (row !== null && column !== null) {
// Decode square coordinates
index = row * width + column
// Make sure the given square cell is defined by the alphabet
if (index >= alphabetLength) {
throw new InvalidInputError(
`Polybius square cell at coordinates ${row},${column} are not ` +
`defined by the alphabet.`)
}
result[j++] = alphabet[index]
} else if (row !== null || column !== null) {
// Incomplete set of coordinates
throw new InvalidInputError(
`Reached unexpected end of content. The last set of Polybius ` +
`square coordinates is incomplete.`)
}
}
return result.slice(0, j)
}
/**
* Triggered when a setting field has changed.
* @param {Field} setting Sender setting field
* @param {mixed} value New field value
*/
settingValueDidChange (setting, value) {
switch (setting.getName()) {
case 'caseSensitivity':
this.getSetting('alphabet').setCaseSensitivity(value)
this.getSetting('rows').setCaseSensitivity(value)
this.getSetting('columns').setCaseSensitivity(value)
this.getSetting('separator').setCaseSensitivity(value)
break
case 'columns':
case 'rows':
this.getSetting('alphabet').revalidateValue()
break
}
}
/**
* Validates wether alphabet fits into the Polybius square.
* @param {Chain} value Alphabet value
* @param {Field} setting Sender field
* @return {boolean|object}
*/
validateAlphabetValue (value, setting) {
const length = value.getLength()
const columns = this.getSettingValue('columns').getLength()
const rows = this.getSettingValue('rows').getLength()
// Check if the alphabet fits inside the rows and columns
if (length > rows * columns) {
return {
key: 'polybiusSquareAlphabetTooLong',
message:
`The alphabet size ${length} is too big for the given ` +
`${rows}×${columns} Polybius square defined by the settings ` +
`'columns' and 'rows'.`
}
}
// Check if the alphabet is long enough to reach the last row
if (length <= (rows - 1) * columns) {
return {
key: 'polybiusSquareAlphabetTooShort',
message:
`The alphabet size ${length} is too short for the given ` +
`${rows}×${columns} Polybius square defined by the settings ` +
`'columns' and 'rows'.`
}
}
return true
}
/**
* Validates the separator setting to make sure it does not contain
* characters from the rows or the columns.
* @param {Chain} value Separator value
* @param {Field} setting Sender field
* @return {boolean|object}
*/
validateSeparatorValue (value, setting) {
const blacklist = this.getSettingValue('rows').getCodePoints()
blacklist.concat(this.getSettingValue('columns').getCodePoints())
const containsInvalidCharacter = value.getCodePoints()
.find(codePoint => blacklist.indexOf(codePoint) !== -1) !== undefined
if (containsInvalidCharacter) {
return {
key: 'polybiusSquareSeparatorInvalid',
message:
'The separator shall not contain characters from the Polybius ' +
'square rows or columns'
}
}
return true
}
}