-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathctx.js
71 lines (60 loc) · 2.43 KB
/
ctx.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
/* Generic base CTX library.
* Exposes CTX inverse permutation for client-side processing. */
let CTX = {
unpermute: function(permutation, permuted) {
// console.log('Unpermuting "' + permuted + '"\
// by reversing permutation "' + permutation + '"');
let secretAlphabet = permutation.split('').slice();
secretAlphabet.sort();
let secret = '';
let inversePermutationMap = {};
// inversePermutationMap = _.zipObject(permutation, secretAlphabet)
for (let i = 0; i < secretAlphabet.length; ++i) {
inversePermutationMap[permutation[i]] = secretAlphabet[i];
}
for (let i = 0; i < permuted.length; ++i) {
secret += inversePermutationMap[permuted[i]];
}
return secret;
},
};
/* HTML-specific CTX library.
* Applies the inverse CTX permutation on HTML secrets stored in div tags.
* Reads forward permutation table from application/json. */
let CTXHTML = {
permutations: [],
_unpermuteElement: function(element) {
let idx = element.dataset.ctxOrigin;
if (idx >= this.permutations.length) {
// console.log('CTX: Invalid permutation index: ' + idx + '. Skipping.');
return;
}
let permutation = this.permutations[idx];
let permuted = element.innerHTML;
// console.log('Permuted secret: ', permuted);
permuted = decodeURIComponent(permuted);
// console.log('Decoded permuted secret: ', permuted);
let secret = CTX.unpermute(permutation, permuted);
element.innerHTML = secret;
},
_getPermutedElements: function() {
return document.querySelectorAll('div[data-ctx-origin]');
},
_getPermutations: function() {
let permutationsElement = document.getElementById('ctx-permutations');
if (permutationsElement == null) {
throw 'CTX: No permutation translation table is available. Aborting.'
}
this.permutations = JSON.parse(permutationsElement.textContent);
// console.log('Recovered permutations table:');
// console.log(this.permutations);
},
process: function() {
this._getPermutations();
let elements = this._getPermutedElements();
for (let i = 0; i < elements.length; ++i) {
this._unpermuteElement(elements[i]);
}
}
};
document.addEventListener('DOMContentLoaded', CTXHTML.process.bind(CTXHTML));