-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathindex.js
executable file
·381 lines (280 loc) · 16.5 KB
/
index.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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
'use strict';
const Crypto = require('crypto');
const B64 = require('@hapi/b64');
const Code = require('@hapi/code');
const Cryptiles = require('@hapi/cryptiles');
const Hoek = require('@hapi/hoek');
const Iron = require('..');
const Lab = require('@hapi/lab');
const internals = {};
const { describe, it } = exports.lab = Lab.script();
const expect = Code.expect;
describe('Iron', () => {
const obj = {
a: 1,
b: 2,
c: [3, 4, 5],
d: {
e: 'f'
}
};
const password = 'some_not_random_password_that_is_also_long_enough';
it('turns object into a ticket than parses the ticket successfully', async () => {
const sealed = await Iron.seal(obj, password, Iron.defaults);
const unsealed = await Iron.unseal(sealed, { 'default': password }, Iron.defaults);
expect(unsealed).to.equal(obj);
});
it('unseal and sealed object with expiration', async () => {
const options = Hoek.clone(Iron.defaults);
options.ttl = 200;
const sealed = await Iron.seal(obj, password, options);
const unsealed = await Iron.unseal(sealed, { 'default': password }, Iron.defaults);
expect(unsealed).to.equal(obj);
});
it('unseal and sealed object with expiration and time offset', async () => {
const options = Hoek.clone(Iron.defaults);
options.ttl = 200;
options.localtimeOffsetMsec = -100000;
const sealed = await Iron.seal(obj, password, options);
const options2 = Hoek.clone(Iron.defaults);
options2.localtimeOffsetMsec = -100000;
const unsealed = await Iron.unseal(sealed, { 'default': password }, options2);
expect(unsealed).to.equal(obj);
});
it('unseal and sealed object without time offset', async () => {
const options = Hoek.clone(Iron.defaults);
options.ttl = 200;
delete options.localtimeOffsetMsec;
const sealed = await Iron.seal(obj, password, options);
const options2 = Hoek.clone(Iron.defaults);
delete options2.localtimeOffsetMsec;
const unsealed = await Iron.unseal(sealed, { 'default': password }, options2);
expect(unsealed).to.equal(obj);
});
it('turns object into a ticket than parses the ticket successfully (password buffer)', async () => {
const key = Cryptiles.randomBits(256);
const sealed = await Iron.seal(obj, key, Iron.defaults);
const unsealed = await Iron.unseal(sealed, key, Iron.defaults);
expect(unsealed).to.equal(obj);
});
it('turns object into a ticket than parses the ticket successfully (password buffer in object)', async () => {
const key = Cryptiles.randomBits(256);
const sealed = await Iron.seal(obj, key, Iron.defaults);
const unsealed = await Iron.unseal(sealed, { 'default': key }, Iron.defaults);
expect(unsealed).to.equal(obj);
});
it('fails to turns object into a ticket (password buffer too short)', async () => {
const key = Cryptiles.randomBits(128);
const err = await expect(Iron.seal(obj, key, Iron.defaults)).to.reject('Key buffer (password) too small');
expect(err.isBoom).to.be.true();
});
it('fails to turn object into a ticket (failed to stringify object)', async () => {
const cyclic = [];
cyclic[0] = cyclic;
const key = Cryptiles.randomBits(128);
const err = await expect(Iron.seal(cyclic, key, Iron.defaults)).to.reject(/Failed to stringify object: Converting circular structure to JSON/);
expect(err.isBoom).to.be.true();
});
it('turns object into a ticket than parses the ticket successfully (password object)', async () => {
const sealed = await Iron.seal(obj, { id: '1', secret: password }, Iron.defaults);
const unsealed = await Iron.unseal(sealed, { '1': password }, Iron.defaults);
expect(unsealed).to.equal(obj);
});
it('handles separate password buffers (password object)', async () => {
const key = {
id: '1',
encryption: Cryptiles.randomBits(256),
integrity: Cryptiles.randomBits(256)
};
const sealed = await Iron.seal(obj, key, Iron.defaults);
const unsealed = await Iron.unseal(sealed, { '1': key }, Iron.defaults);
expect(unsealed).to.equal(obj);
});
it('handles a common password buffer (password object)', async () => {
const key = {
id: '1',
secret: Cryptiles.randomBits(256)
};
const sealed = await Iron.seal(obj, key, Iron.defaults);
const unsealed = await Iron.unseal(sealed, { '1': key }, Iron.defaults);
expect(unsealed).to.equal(obj);
});
it('fails to parse a sealed object when password not found', async () => {
const sealed = await Iron.seal(obj, { id: '1', secret: password }, Iron.defaults);
const err = await expect(Iron.unseal(sealed, { '2': password }, Iron.defaults)).to.reject('Cannot find password: 1');
expect(err.isBoom).to.be.true();
});
describe('generateKey()', () => {
it('returns an error when password is missing', async () => {
const err = await expect(Iron.generateKey(null, null)).to.reject('Empty password');
expect(err.isBoom).to.be.true();
});
it('returns an error when password is too short', async () => {
const err = await expect(Iron.generateKey('password', Iron.defaults.encryption)).to.reject('Password string too short (min 32 characters required)');
expect(err.isBoom).to.be.true();
});
it('returns an error when options are missing', async () => {
const err = await expect(Iron.generateKey(password, null)).to.reject('Bad options');
expect(err.isBoom).to.be.true();
await expect(Iron.generateKey(password, 'abc')).to.reject('Bad options');
});
it('returns an error when an unknown algorithm is specified', async () => {
const err = await expect(Iron.generateKey(password, { algorithm: 'unknown' })).to.reject('Unknown algorithm: unknown');
expect(err.isBoom).to.be.true();
});
it('returns an error when no salt and no salt bits are provided', async () => {
const options = {
algorithm: 'sha256',
iterations: 2
};
const err = await expect(Iron.generateKey(password, options)).to.reject('Missing salt and saltBits options');
expect(err.isBoom).to.be.true();
});
it('returns an error when invalid salt bits are provided', async () => {
const options = {
saltBits: 99999999999999999999,
algorithm: 'sha256',
iterations: 2
};
const err = await expect(Iron.generateKey(password, options)).to.reject(/Failed generating random bits/);
expect(err.isBoom).to.be.true();
});
it('returns an error when Cryptiles.randomBits fails', async () => {
const options = Hoek.clone(Iron.defaults.encryption);
options.salt = 'abcdefg';
options.algorithm = 'x';
Iron.algorithms.x = { keyBits: 256, ivBits: -1 };
const err = await expect(Iron.generateKey(password, options)).to.reject('Invalid random bits count');
expect(err.isBoom).to.be.true();
});
it('returns an error when Crypto.pbkdf2 fails', async () => {
const orig = Crypto.pbkdf2;
Crypto.pbkdf2 = (...args) => args[args.length - 1](new Error('fake'));
const err = await expect(Iron.generateKey(password, Iron.defaults.encryption)).to.reject('fake');
Crypto.pbkdf2 = orig;
expect(err.isBoom).to.be.true();
});
});
describe('encrypt()', () => {
it('returns an error when password is missing', async () => {
const err = await expect(Iron.encrypt(null, null, 'data')).to.reject('Empty password');
expect(err.isBoom).to.be.true();
});
});
describe('decrypt', () => {
it('returns an error when password is missing', async () => {
const err = await expect(Iron.decrypt(null, null, 'data')).to.reject('Empty password');
expect(err.isBoom).to.be.true();
});
});
describe('hmacWithPassword()', () => {
it('returns an error when password is missing', async () => {
const err = await expect(Iron.hmacWithPassword(null, null, 'data')).to.reject('Empty password');
expect(err.isBoom).to.be.true();
});
it('produces the same mac when used with buffer password', async () => {
const data = 'Not so random';
const key = Cryptiles.randomBits(256);
const hmac = Crypto.createHmac(Iron.defaults.integrity.algorithm, key).update(data);
const digest = hmac.digest('base64').replace(/\+/g, '-').replace(/\//g, '_').replace(/\=/g, '');
const mac = await Iron.hmacWithPassword(key, Iron.defaults.integrity, data);
expect(mac.digest).to.equal(digest);
});
});
describe('seal()', () => {
it('returns an error when password is missing', async () => {
const err = await expect(Iron.seal('data', null, {})).to.reject('Empty password');
expect(err.isBoom).to.be.true();
});
it('returns an error when integrity options are missing', async () => {
const options = {
encryption: {
saltBits: 256,
algorithm: 'aes-256-cbc',
iterations: 1
},
integrity: {}
};
const err = await expect(Iron.seal('data', password, options)).to.reject('Unknown algorithm: undefined');
expect(err.isBoom).to.be.true();
});
it('returns an error when password.id is invalid', async () => {
const err = await expect(Iron.seal('data', { id: 'asd$', secret: 'asd' }, {})).to.reject('Invalid password id');
expect(err.isBoom).to.be.true();
});
});
describe('unseal()', () => {
it('unseals a ticket', async () => {
const ticket = 'Fe26.2**0cdd607945dd1dffb7da0b0bf5f1a7daa6218cbae14cac51dcbd91fb077aeb5b*aOZLCKLhCt0D5IU1qLTtYw*g0ilNDlQ3TsdFUqJCqAm9iL7Wa60H7eYcHL_5oP136TOJREkS3BzheDC1dlxz5oJ**05b8943049af490e913bbc3a2485bee2aaf7b823f4c41d0ff0b7c168371a3772*R8yscVdTBRMdsoVbdDiFmUL8zb-c3PQLGJn4Y8C-AqI';
const unsealed = await Iron.unseal(ticket, password, Iron.defaults);
expect(unsealed).to.equal(obj);
});
it('returns an error when number of sealed components is wrong', async () => {
const ticket = 'x*Fe26.2**a6dc6339e5ea5dfe7a135631cf3b7dcf47ea38246369d45767c928ea81781694*D3DLEoi-Hn3c972TPpZXqw*mCBhmhHhRKk9KtBjwu3h-1lx1MHKkgloQPKRkQZxpnDwYnFkb3RqdVTQRcuhGf4M**ff2bf988aa0edf2b34c02d220a45c4a3c572dac6b995771ed20de58da919bfa5*HfWzyJlz_UP9odmXvUaVK1TtdDuOCaezr-TAg2GjBCU';
const err = await expect(Iron.unseal(ticket, password, Iron.defaults)).to.reject('Incorrect number of sealed components');
expect(err.isBoom).to.be.true();
});
it('returns an error when password is missing', async () => {
const ticket = 'Fe26.2**a6dc6339e5ea5dfe7a135631cf3b7dcf47ea38246369d45767c928ea81781694*D3DLEoi-Hn3c972TPpZXqw*mCBhmhHhRKk9KtBjwu3h-1lx1MHKkgloQPKRkQZxpnDwYnFkb3RqdVTQRcuhGf4M**ff2bf988aa0edf2b34c02d220a45c4a3c572dac6b995771ed20de58da919bfa5*HfWzyJlz_UP9odmXvUaVK1TtdDuOCaezr-TAg2GjBCU';
const err = await expect(Iron.unseal(ticket, null, Iron.defaults)).to.reject('Empty password');
expect(err.isBoom).to.be.true();
});
it('returns an error when mac prefix is wrong', async () => {
const ticket = 'Fe27.2**a6dc6339e5ea5dfe7a135631cf3b7dcf47ea38246369d45767c928ea81781694*D3DLEoi-Hn3c972TPpZXqw*mCBhmhHhRKk9KtBjwu3h-1lx1MHKkgloQPKRkQZxpnDwYnFkb3RqdVTQRcuhGf4M**ff2bf988aa0edf2b34c02d220a45c4a3c572dac6b995771ed20de58da919bfa5*HfWzyJlz_UP9odmXvUaVK1TtdDuOCaezr-TAg2GjBCU';
const err = await expect(Iron.unseal(ticket, password, Iron.defaults)).to.reject('Wrong mac prefix');
expect(err.isBoom).to.be.true();
});
it('returns an error when integrity check fails', async () => {
const ticket = 'Fe26.2**b3ad22402ccc60fa4d527f7d1c9ff2e37e9b2e5723e9e2ffba39a489e9849609*QKCeXLs6Rp7f4LL56V7hBg*OvZEoAq_nGOpA1zae-fAtl7VNCNdhZhCqo-hWFCBeWuTTpSupJ7LxQqzSQBRAcgw**72018a21d3fac5c1608a0f9e461de0fcf17b2befe97855978c17a793faa01db1*Qj53DFE3GZd5yigt-mVl9lnp0VUoSjh5a5jgDmod1EZ';
const err = await expect(Iron.unseal(ticket, password, Iron.defaults)).to.reject('Bad hmac value');
expect(err.isBoom).to.be.true();
});
it('returns an error when decryption fails', async () => {
const macBaseString = 'Fe26.2**a6dc6339e5ea5dfe7a135631cf3b7dcf47ea38246369d45767c928ea81781694*D3DLEoi-Hn3c972TPpZXqw*mCBhmhHhRKk9KtBjwu3h-1lx1MHKkgloQPKRkQZxpnDwYnFkb3RqdVTQRcuhGf4M??*';
const options = Hoek.clone(Iron.defaults.integrity);
options.salt = 'ff2bf988aa0edf2b34c02d220a45c4a3c572dac6b995771ed20de58da919bfa5';
const mac = await Iron.hmacWithPassword(password, options, macBaseString);
const ticket = macBaseString + '*' + mac.salt + '*' + mac.digest;
const err = await expect(Iron.unseal(ticket, password, Iron.defaults)).to.reject('Invalid character');
expect(err.isBoom).to.be.true();
});
it('returns an error when iv base64 decoding fails', async () => {
const macBaseString = 'Fe26.2**a6dc6339e5ea5dfe7a135631cf3b7dcf47ea38246369d45767c928ea81781694*D3DLEoi-Hn3c972TPpZXqw??*mCBhmhHhRKk9KtBjwu3h-1lx1MHKkgloQPKRkQZxpnDwYnFkb3RqdVTQRcuhGf4M*';
const options = Hoek.clone(Iron.defaults.integrity);
options.salt = 'ff2bf988aa0edf2b34c02d220a45c4a3c572dac6b995771ed20de58da919bfa5';
const mac = await Iron.hmacWithPassword(password, options, macBaseString);
const ticket = macBaseString + '*' + mac.salt + '*' + mac.digest;
const err = await expect(Iron.unseal(ticket, password, Iron.defaults)).to.reject('Invalid character');
expect(err.isBoom).to.be.true();
});
it('returns an error when decrypted object is invalid', async () => {
const badJson = '{asdasd';
const { encrypted, key } = await Iron.encrypt(password, Iron.defaults.encryption, badJson);
const encryptedB64 = B64.base64urlEncode(encrypted);
const iv = B64.base64urlEncode(key.iv);
const macBaseString = Iron.macPrefix + '**' + key.salt + '*' + iv + '*' + encryptedB64 + '*';
const mac = await Iron.hmacWithPassword(password, Iron.defaults.integrity, macBaseString);
const ticket = macBaseString + '*' + mac.salt + '*' + mac.digest;
const err = await expect(Iron.unseal(ticket, password, Iron.defaults)).to.reject(/Failed parsing sealed object JSON: Unexpected token a/);
expect(err.isBoom).to.be.true();
});
it('returns an error when expired', async () => {
const macBaseString = 'Fe26.2**a38dc7a7bf2f8ff650b103d8c669d76ad219527fbfff3d98e3b30bbecbe9bd3b*nTsatb7AQE1t0uMXDx-2aw*uIO5bRFTwEBlPC1Nd_hfSkZfqxkxuY1EO2Be_jJPNQCqFNumRBjQAl8WIKBW1beF*1380495854060';
const options = Hoek.clone(Iron.defaults.integrity);
options.salt = 'e4fe33b6dc4c7ef5ad7907f015deb7b03723b03a54764aceeb2ab1235cc8dce3';
const mac = await Iron.hmacWithPassword(password, options, macBaseString);
const ticket = macBaseString + '*' + mac.salt + '*' + mac.digest;
const err = await expect(Iron.unseal(ticket, password, Iron.defaults)).to.reject('Expired seal');
expect(err.isBoom).to.be.true();
});
it('returns an error when expiration NaN', async () => {
const macBaseString = 'Fe26.2**a38dc7a7bf2f8ff650b103d8c669d76ad219527fbfff3d98e3b30bbecbe9bd3b*nTsatb7AQE1t0uMXDx-2aw*uIO5bRFTwEBlPC1Nd_hfSkZfqxkxuY1EO2Be_jJPNQCqFNumRBjQAl8WIKBW1beF*a';
const options = Hoek.clone(Iron.defaults.integrity);
options.salt = 'e4fe33b6dc4c7ef5ad7907f015deb7b03723b03a54764aceeb2ab1235cc8dce3';
const mac = await Iron.hmacWithPassword(password, options, macBaseString);
const ticket = macBaseString + '*' + mac.salt + '*' + mac.digest;
const err = await expect(Iron.unseal(ticket, password, Iron.defaults)).to.reject('Invalid expiration');
expect(err.isBoom).to.be.true();
});
});
});