-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathencrypted-key-backup.js
More file actions
413 lines (359 loc) Β· 11.9 KB
/
encrypted-key-backup.js
File metadata and controls
413 lines (359 loc) Β· 11.9 KB
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
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
/**
* @fileoverview Encrypted key backup system
* Handles encryption/decryption of user keys for secure cloud storage
*/
import { browser } from '$app/environment';
import { Base64 } from './index.js';
/**
* Encrypted key backup service
* Encrypts user keys with master key for secure cloud storage
*/
export class EncryptedKeyBackup {
/**
* Encrypt identity keys for backup
* @param {{ publicKey: Uint8Array, privateKey: Uint8Array }} identityKeys - Identity key pair
* @param {Uint8Array} masterKey - Master encryption key
* @returns {Promise<{ encryptedData: Uint8Array, nonce: Uint8Array }>} Encrypted key data
*/
static async encryptIdentityKeys(identityKeys, masterKey) {
if (!browser) {
throw new Error('Key encryption only available in browser');
}
try {
// Serialize identity keys
const keyData = {
publicKey: Base64.encode(identityKeys.publicKey),
privateKey: Base64.encode(identityKeys.privateKey),
timestamp: Date.now()
};
const plaintext = new TextEncoder().encode(JSON.stringify(keyData));
// Generate random nonce
const nonce = new Uint8Array(12); // 96 bits for AES-GCM
crypto.getRandomValues(nonce);
// Import master key for AES-GCM
const cryptoKey = await crypto.subtle.importKey(
'raw',
masterKey,
{ name: 'AES-GCM' },
false,
['encrypt']
);
// Encrypt the key data
const encryptedBuffer = await crypto.subtle.encrypt(
{
name: 'AES-GCM',
iv: nonce
},
cryptoKey,
plaintext
);
const encryptedData = new Uint8Array(encryptedBuffer);
console.log('π Successfully encrypted identity keys');
return {
encryptedData,
nonce
};
} catch (error) {
console.error('π Failed to encrypt identity keys:', error);
const errorMessage = error instanceof Error ? error.message : 'Unknown error';
throw new Error(`Identity key encryption failed: ${errorMessage}`);
}
}
/**
* Decrypt identity keys from backup
* @param {{ encryptedData: Uint8Array, nonce: Uint8Array }} encryptedKeys - Encrypted key data
* @param {Uint8Array} masterKey - Master decryption key
* @returns {Promise<{ publicKey: Uint8Array, privateKey: Uint8Array }>} Decrypted identity keys
*/
static async decryptIdentityKeys(encryptedKeys, masterKey) {
if (!browser) {
throw new Error('Key decryption only available in browser');
}
try {
// Import master key for AES-GCM
const cryptoKey = await crypto.subtle.importKey(
'raw',
masterKey,
{ name: 'AES-GCM' },
false,
['decrypt']
);
// Decrypt the key data
const decryptedBuffer = await crypto.subtle.decrypt(
{
name: 'AES-GCM',
iv: encryptedKeys.nonce
},
cryptoKey,
encryptedKeys.encryptedData
);
const decryptedText = new TextDecoder().decode(decryptedBuffer);
const keyData = JSON.parse(decryptedText);
// Deserialize keys
const identityKeys = {
publicKey: Base64.decode(keyData.publicKey),
privateKey: Base64.decode(keyData.privateKey)
};
console.log('π Successfully decrypted identity keys');
return identityKeys;
} catch (error) {
console.error('π Failed to decrypt identity keys:', error);
const errorMessage = error instanceof Error ? error.message : 'Unknown error';
throw new Error(`Identity key decryption failed: ${errorMessage}`);
}
}
/**
* Encrypt conversation keys for backup
* @param {Record<string, Uint8Array>} conversationKeys - Map of conversation ID to key
* @param {Uint8Array} masterKey - Master encryption key
* @returns {Promise<{ encryptedData: Uint8Array, nonce: Uint8Array }>} Encrypted conversation keys
*/
static async encryptConversationKeys(conversationKeys, masterKey) {
if (!browser) {
throw new Error('Key encryption only available in browser');
}
try {
// Serialize conversation keys
const serializedKeys = /** @type {Record<string, string>} */ ({});
for (const [conversationId, key] of Object.entries(conversationKeys)) {
serializedKeys[conversationId] = Base64.encode(key);
}
const keyData = {
keys: serializedKeys,
timestamp: Date.now()
};
const plaintext = new TextEncoder().encode(JSON.stringify(keyData));
// Generate random nonce
const nonce = new Uint8Array(12);
crypto.getRandomValues(nonce);
// Import master key for AES-GCM
const cryptoKey = await crypto.subtle.importKey(
'raw',
masterKey,
{ name: 'AES-GCM' },
false,
['encrypt']
);
// Encrypt the key data
const encryptedBuffer = await crypto.subtle.encrypt(
{
name: 'AES-GCM',
iv: nonce
},
cryptoKey,
plaintext
);
const encryptedData = new Uint8Array(encryptedBuffer);
console.log(`π Successfully encrypted ${Object.keys(conversationKeys).length} conversation keys`);
return {
encryptedData,
nonce
};
} catch (error) {
console.error('π Failed to encrypt conversation keys:', error);
const errorMessage = error instanceof Error ? error.message : 'Unknown error';
throw new Error(`Conversation key encryption failed: ${errorMessage}`);
}
}
/**
* Decrypt conversation keys from backup
* @param {{ encryptedData: Uint8Array, nonce: Uint8Array }} encryptedKeys - Encrypted key data
* @param {Uint8Array} masterKey - Master decryption key
* @returns {Promise<Record<string, Uint8Array>>} Decrypted conversation keys
*/
static async decryptConversationKeys(encryptedKeys, masterKey) {
if (!browser) {
throw new Error('Key decryption only available in browser');
}
try {
// Import master key for AES-GCM
const cryptoKey = await crypto.subtle.importKey(
'raw',
masterKey,
{ name: 'AES-GCM' },
false,
['decrypt']
);
// Decrypt the key data
const decryptedBuffer = await crypto.subtle.decrypt(
{
name: 'AES-GCM',
iv: encryptedKeys.nonce
},
cryptoKey,
encryptedKeys.encryptedData
);
const decryptedText = new TextDecoder().decode(decryptedBuffer);
const keyData = JSON.parse(decryptedText);
// Deserialize keys
const conversationKeys = /** @type {Record<string, Uint8Array>} */ ({});
for (const [conversationId, encodedKey] of Object.entries(keyData.keys)) {
conversationKeys[conversationId] = Base64.decode(encodedKey);
}
console.log(`π Successfully decrypted ${Object.keys(conversationKeys).length} conversation keys`);
return conversationKeys;
} catch (error) {
console.error('π Failed to decrypt conversation keys:', error);
const errorMessage = error instanceof Error ? error.message : 'Unknown error';
throw new Error(`Conversation key decryption failed: ${errorMessage}`);
}
}
/**
* Create complete encrypted backup package
* @param {Object} params - Backup parameters
* @param {{ publicKey: Uint8Array, privateKey: Uint8Array }} params.identityKeys - Identity key pair
* @param {Record<string, Uint8Array>} params.conversationKeys - Conversation keys map
* @param {Uint8Array} params.masterKey - Master encryption key
* @param {string} params.phoneNumber - User's phone number
* @param {string} params.deviceFingerprint - Device identifier
* @returns {Promise<Object>} Complete backup package
*/
static async createBackup({
identityKeys,
conversationKeys,
masterKey,
phoneNumber,
deviceFingerprint
}) {
try {
// Encrypt identity keys
const encryptedIdentityKeys = await this.encryptIdentityKeys(identityKeys, masterKey);
// Encrypt conversation keys
const encryptedConversationKeys = await this.encryptConversationKeys(conversationKeys, masterKey);
// Generate salt for key derivation verification
const salt = new Uint8Array(32);
crypto.getRandomValues(salt);
const backup = {
// Encrypted key data
encryptedIdentityKeys,
encryptedConversationKeys,
// Key derivation parameters
salt,
iterations: 100000,
// Metadata
phoneNumber,
deviceFingerprint,
keyVersion: 1,
createdAt: new Date().toISOString(),
// Backup integrity
backupId: crypto.randomUUID()
};
console.log(`π Created complete backup package for ${phoneNumber}`);
return backup;
} catch (error) {
console.error('π Failed to create backup package:', error);
const errorMessage = error instanceof Error ? error.message : 'Unknown error';
throw new Error(`Backup creation failed: ${errorMessage}`);
}
}
/**
* Restore keys from backup package
* @param {any} backup - Backup package
* @param {Uint8Array} masterKey - Master decryption key
* @returns {Promise<Object>} Restored keys
*/
static async restoreFromBackup(backup, masterKey) {
try {
// Decrypt identity keys
const identityKeys = await this.decryptIdentityKeys(backup.encryptedIdentityKeys, masterKey);
// Decrypt conversation keys
const conversationKeys = await this.decryptConversationKeys(backup.encryptedConversationKeys, masterKey);
const restored = {
identityKeys,
conversationKeys,
metadata: {
phoneNumber: backup.phoneNumber,
deviceFingerprint: backup.deviceFingerprint,
keyVersion: backup.keyVersion,
createdAt: backup.createdAt,
backupId: backup.backupId
}
};
console.log(`π Successfully restored backup for ${backup.phoneNumber}`);
return restored;
} catch (error) {
console.error('π Failed to restore from backup:', error);
const errorMessage = error instanceof Error ? error.message : 'Unknown error';
throw new Error(`Backup restoration failed: ${errorMessage}`);
}
}
/**
* Verify backup integrity
* @param {any} backup - Backup package to verify
* @returns {boolean} Whether backup is valid
*/
static verifyBackupIntegrity(backup) {
try {
// Check required fields
const requiredFields = [
'encryptedIdentityKeys',
'encryptedConversationKeys',
'salt',
'iterations',
'phoneNumber',
'keyVersion'
];
for (const field of requiredFields) {
if (!backup[field]) {
console.error(`π Missing required field: ${field}`);
return false;
}
}
// Check encrypted data structure
if (!backup.encryptedIdentityKeys.encryptedData || !backup.encryptedIdentityKeys.nonce) {
console.error('π Invalid identity keys structure');
return false;
}
if (!backup.encryptedConversationKeys.encryptedData || !backup.encryptedConversationKeys.nonce) {
console.error('π Invalid conversation keys structure');
return false;
}
// Check data types
if (!(backup.salt instanceof Uint8Array) || backup.salt.length !== 32) {
console.error('π Invalid salt');
return false;
}
if (typeof backup.iterations !== 'number' || backup.iterations < 10000) {
console.error('π Invalid iterations count');
return false;
}
console.log('π Backup integrity verified');
return true;
} catch (error) {
console.error('π Backup integrity check failed:', error);
return false;
}
}
/**
* Generate device fingerprint
* @returns {Promise<string>} Device fingerprint
*/
static async generateDeviceFingerprint() {
try {
// Collect device characteristics
const characteristics = [
navigator.userAgent,
navigator.language,
screen.width + 'x' + screen.height,
new Date().getTimezoneOffset().toString(),
navigator.hardwareConcurrency?.toString() || '0'
];
const fingerprintData = characteristics.join('|');
const fingerprintBuffer = new TextEncoder().encode(fingerprintData);
// Hash to create fingerprint
const hashBuffer = await crypto.subtle.digest('SHA-256', fingerprintBuffer);
const hashArray = new Uint8Array(hashBuffer);
// Convert to hex string
const fingerprint = Array.from(hashArray)
.map(b => b.toString(16).padStart(2, '0'))
.join('')
.substring(0, 16); // Use first 16 characters
console.log('π Generated device fingerprint');
return fingerprint;
} catch (error) {
console.error('π Failed to generate device fingerprint:', error);
// Fallback to random string
return crypto.randomUUID().replace(/-/g, '').substring(0, 16);
}
}
}