-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsaltyrtc-client.d.ts
541 lines (456 loc) · 17.1 KB
/
saltyrtc-client.d.ts
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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
/**
* Copyright (C) 2016-2022 Threema GmbH
*
* This software may be modified and distributed under the terms
* of the MIT license. See the `LICENSE.md` file for details.
*/
declare namespace saltyrtc {
type CryptoErrorCode = 'bad-message-length' | 'bad-token-length' | 'decryption-failed'
interface SignalingError extends Error {
readonly closeCode: number;
}
interface ProtocolError extends SignalingError {}
interface ConnectionError extends Error {}
interface ValidationError extends Error {
readonly critical: boolean;
}
interface CryptoError extends Error {
readonly code: CryptoErrorCode;
}
interface Box {
readonly length: number;
readonly data: Uint8Array;
readonly nonce: Uint8Array;
toUint8Array(): Uint8Array;
}
interface KeyStore {
readonly publicKeyHex: string;
readonly publicKeyBytes: Uint8Array;
readonly secretKeyHex: string;
readonly secretKeyBytes: Uint8Array;
getSharedKeyStore(publicKey: Uint8Array | string): SharedKeyStore;
encryptRaw(bytes: Uint8Array, nonce: Uint8Array, otherKey: Uint8Array): Uint8Array;
encrypt(bytes: Uint8Array, nonce: Uint8Array, otherKey: Uint8Array): Box;
decryptRaw(bytes: Uint8Array, nonce: Uint8Array, otherKey: Uint8Array): Uint8Array;
decrypt(box: Box, otherKey: Uint8Array): Uint8Array;
}
interface SharedKeyStore {
readonly localSecretKeyHex: string;
readonly localSecretKeyBytes: Uint8Array
readonly remotePublicKeyHex: string;
readonly remotePublicKeyBytes: Uint8Array
encryptRaw(bytes: Uint8Array, nonce: Uint8Array): Uint8Array;
encrypt(bytes: Uint8Array, nonce: Uint8Array): Box;
decryptRaw(bytes: Uint8Array, nonce: Uint8Array): Uint8Array;
decrypt(box: Box): Uint8Array;
}
interface AuthToken {
readonly keyBytes: Uint8Array;
readonly keyHex: string;
encrypt(bytes: Uint8Array, nonce: Uint8Array): Box;
decrypt(box: Box): Uint8Array;
}
interface Message {
type: string;
}
interface SignalingMessage extends Message {
type: messages.MessageType;
}
type SignalingState = 'new' | 'ws-connecting' | 'server-handshake' | 'peer-handshake' | 'task' | 'closing' | 'closed';
interface HandoverState {
local: boolean;
peer: boolean;
readonly any: boolean;
readonly both: boolean;
onBoth: () => void;
reset(): void;
}
type SignalingRole = 'initiator' | 'responder';
interface SaltyRTCEvent {
type: string;
data?: any;
}
type SaltyRTCEventHandler = (event: SaltyRTCEvent) => boolean | void;
type TaskData = { [index:string] : any };
interface Signaling {
handoverState: HandoverState;
role: SignalingRole;
getState(): SignalingState;
setState(state: SignalingState): void;
/**
* Send a task message through the websocket or - if handover has
* already happened - through the task channel.
*
* @throws SignalingError if message could not be sent.
*/
sendTaskMessage(msg: messages.TaskMessage): void;
/**
* Encrypt data for the peer.
*
* @param data The bytes to be encrypted.
* @param nonce The bytes to be used as NaCl nonce.
*/
encryptForPeer(data: Uint8Array, nonce: Uint8Array): Box;
/**
* Decrypt data from the peer.
*
* @param box The encrypted box.
*/
decryptFromPeer(box: Box): Uint8Array;
/**
* Handle incoming signaling messages from the peer.
*
* This method can be used by tasks to pass in messages that arrived through their signaling channel.
*
* @param decryptedBytes The decrypted message bytes.
* @throws SignalingError if the message is invalid.
*/
onSignalingPeerMessage(decryptedBytes: Uint8Array): void;
/**
* Send a close message to the peer.
*
* This method may only be called once the client-to-client handshakes has been completed.
*
* Note that sending a close message does not reset the connection. To do that,
* `resetConnection` needs to be called explicitly.
*
* @param reason The close code.
*/
sendClose(reason: number): void;
/**
* Close and reset the connection with the specified close code.
*
* If no reason is passed in, this will be treated as a quiet
* reset - no listeners will be notified.
*
* @param reason The close code to use.
*/
resetConnection(reason?: number): void;
}
interface Task {
/**
* Initialize the task with the task data from the peer.
*
* The task should keep track internally whether it has been initialized or not.
*
* @param signaling The signaling instance.
* @param data The data sent by the peer in the 'auth' message.
* @throws ValidationError if task data is invalid.
*/
init(signaling: Signaling, data: TaskData): void;
/**
* Used by the signaling class to notify task that the peer handshake is over.
*
* This is the point where the task can take over.
*/
onPeerHandshakeDone(): void;
/**
* This method is called by SaltyRTC when a task related message
* arrives through the WebSocket.
*
* @param message The deserialized MessagePack message.
*/
onTaskMessage(message: messages.TaskMessage): void;
/**
* Send a signaling message through the task signaling channel.
*
* This method should only be called after the handover.
*
* @param payload The *unencrypted* message bytes. Message will be encrypted by the task.
* @throws SignalingError if something goes wrong.
*/
sendSignalingMessage(payload: Uint8Array): void;
/**
* Return the task protocol name.
*/
getName(): string;
/**
* Return the list of supported message types.
*
* Incoming mssages with this type will be passed to the task.
*/
getSupportedMessageTypes(): string[];
/**
* Return the task data used for negotiation in the `auth` message.
*/
getData(): TaskData;
/**
* Close any task connections that may be open.
*
* This method is called by the signaling class in two cases:
*
* - When sending and receiving 'close' messages
* - When the user explicitly requests to close the connection
*/
close(reason: number): void;
}
type ServerInfoFactory = (initiatorPublicKey: string) => {host: string, port: number};
interface SaltyRTCBuilder {
connectTo(host: string, port: number): SaltyRTCBuilder;
connectWith(serverInfo: ServerInfoFactory): SaltyRTCBuilder;
withKeyStore(keyStore: KeyStore): SaltyRTCBuilder;
withTrustedPeerKey(peerTrustedKey: Uint8Array | string): SaltyRTCBuilder;
withServerKey(serverKey: Uint8Array | string): SaltyRTCBuilder;
withLoggingLevel(level: saltyrtc.LogLevel): SaltyRTCBuilder;
initiatorInfo(initiatorPublicKey: Uint8Array | string, authToken: Uint8Array | string): SaltyRTCBuilder;
usingTasks(tasks: Task[]): SaltyRTCBuilder;
withPingInterval(interval: number): SaltyRTCBuilder;
asInitiator(): SaltyRTC;
asResponder(): SaltyRTC;
}
interface SaltyRTC {
readonly log: saltyrtc.Log;
state: SignalingState;
keyStore: KeyStore;
permanentKeyBytes: Uint8Array;
permanentKeyHex: string;
authTokenBytes: Uint8Array;
authTokenHex: string;
peerPermanentKeyBytes: Uint8Array;
peerPermanentKeyHex: string;
getTask(): Task;
getCurrentPeerCsn(): {incoming: number, outgoing: number};
encryptForPeer(data: Uint8Array, nonce: Uint8Array): Box;
decryptFromPeer(box: Box): Uint8Array;
connect(): void;
disconnect(unbind?: boolean): void;
sendApplicationMessage(data: any): void;
// Event handling
on(event: string | string[], handler: SaltyRTCEventHandler): void;
once(event: string | string[], handler: SaltyRTCEventHandler): void;
off(event?: string | string[], handler?: SaltyRTCEventHandler): void;
emit(event: SaltyRTCEvent): void;
}
interface EventRegistry {
/**
* Register an event handler for the specified event(s).
*/
register(eventType: string | string[], handler: SaltyRTCEventHandler): void;
/**
* Unregister an event handler for the specified event(s).
* If no handler is specified, all handlers for the specified event(s) are removed.
*/
unregister(eventType: string | string[], handler?: SaltyRTCEventHandler): void;
/**
* Clear all event handlers.
*/
unregisterAll(): void;
/**
* Return all event handlers for the specified event(s).
*
* The return value is always an array. If the event does not exist, the
* array will be empty.
*
* Even if a handler is registered for multiple events, it is only returned once.
*/
get(eventType: string | string[]): SaltyRTCEventHandler[];
}
interface Cookie {
bytes: Uint8Array;
equals(otherCookie: Cookie): boolean;
}
interface CookiePair {
ours: Cookie;
theirs: Cookie;
}
type NextCombinedSequence = { sequenceNumber: number, overflow: number };
interface CombinedSequence {
next(): NextCombinedSequence;
}
interface CombinedSequencePair {
ours: CombinedSequence;
theirs: number;
}
type LogLevel = 'none' | 'debug' | 'info' | 'warn' | 'error';
interface Log {
level: saltyrtc.LogLevel;
debug(message?: any, ...optionalParams: any[]): void;
trace(message?: any, ...optionalParams: any[]): void;
info(message?: any, ...optionalParams: any[]): void;
warn(message?: any, ...optionalParams: any[]): void;
error(message?: any, ...optionalParams: any[]): void;
assert(condition?: boolean, message?: string, ...data: any[]): void;
}
}
declare namespace saltyrtc.messages {
type MessageType = 'server-hello' | 'client-hello' | 'client-auth'
| 'server-auth' | 'new-initiator' | 'new-responder'
| 'drop-responder' | 'send-error' | 'token' | 'key'
| 'auth' | 'restart' | 'close' | 'disconnected' | 'application';
// https://github.com/saltyrtc/saltyrtc-meta/blob/master/Protocol.md#server-hello
interface ServerHello extends SignalingMessage {
type: 'server-hello';
key: ArrayBuffer;
}
// https://github.com/saltyrtc/saltyrtc-meta/blob/master/Protocol.md#client-hello
interface ClientHello extends SignalingMessage {
type: 'client-hello';
key: ArrayBuffer;
}
// https://github.com/saltyrtc/saltyrtc-meta/blob/master/Protocol.md#client-auth
interface ClientAuth extends SignalingMessage {
type: 'client-auth';
your_cookie: ArrayBuffer;
your_key?: ArrayBuffer | null;
subprotocols: string[];
ping_interval: number;
}
// https://github.com/saltyrtc/saltyrtc-meta/blob/master/Protocol.md#server-auth
interface ServerAuth extends SignalingMessage {
type: 'server-auth';
your_cookie: ArrayBuffer;
signed_keys?: ArrayBuffer;
initiator_connected?: boolean;
responders?: number[];
}
// https://github.com/saltyrtc/saltyrtc-meta/blob/master/Protocol.md#new-initiator
interface NewInitiator extends SignalingMessage {
type: 'new-initiator';
}
// https://github.com/saltyrtc/saltyrtc-meta/blob/master/Protocol.md#new-responder
interface NewResponder extends SignalingMessage {
type: 'new-responder';
id: number;
}
// https://github.com/saltyrtc/saltyrtc-meta/blob/master/Protocol.md#drop-responder
interface DropResponder extends SignalingMessage {
type: 'drop-responder';
id: number;
reason?: number;
}
// https://github.com/saltyrtc/saltyrtc-meta/blob/master/Protocol.md#send-error
interface SendError extends SignalingMessage {
type: 'send-error';
id: ArrayBuffer;
}
// https://github.com/saltyrtc/saltyrtc-meta/blob/master/Protocol.md#token-message
interface Token extends SignalingMessage {
type: 'token';
key: ArrayBuffer;
}
// https://github.com/saltyrtc/saltyrtc-meta/blob/master/Protocol.md#key-message
interface Key extends SignalingMessage {
type: 'key';
key: ArrayBuffer;
}
// https://github.com/saltyrtc/saltyrtc-meta/blob/master/Protocol.md#auth-message
interface Auth extends SignalingMessage {
type: 'auth';
your_cookie: ArrayBuffer;
data: { [index:string] : any };
}
interface InitiatorAuth extends Auth {
task: string;
}
interface ResponderAuth extends Auth {
tasks: string[];
}
// https://github.com/saltyrtc/saltyrtc-meta/blob/master/Protocol.md#close-message
interface Close extends SignalingMessage {
type: 'close';
reason: number;
}
// https://github.com/saltyrtc/saltyrtc-meta/blob/master/Protocol.md#disconnected-message
interface Disconnected extends SignalingMessage {
type: 'disconnected';
id: number;
}
// https://github.com/saltyrtc/saltyrtc-meta/blob/master/Protocol.md#application-message
interface Application extends Message {
type: 'application';
data: any;
}
/**
* A task message must include the type. It may contain arbitrary other data.
*/
interface TaskMessage extends Message {
type: string;
[others: string]: any; // Make this an open interface
}
}
declare namespace saltyrtc.static {
interface SignalingError {
new(closeCode: number, message: string): saltyrtc.SignalingError;
}
interface ProtocolError {
new(message: string): saltyrtc.ProtocolError;
}
interface ConnectionError {
new(message: string): saltyrtc.ConnectionError;
}
interface ValidationError {
new(message: string, critical?: boolean): saltyrtc.ValidationError;
}
interface CryptoError {
new(code: CryptoErrorCode, message: string): saltyrtc.CryptoError;
}
interface SaltyRTCBuilder {
new(): saltyrtc.SaltyRTCBuilder;
}
interface KeyStore {
new(secretKey?: Uint8Array | string, log?: saltyrtc.Log): saltyrtc.KeyStore;
}
interface Box {
new(nonce: Uint8Array, data: Uint8Array, nonceLength: number): saltyrtc.Box;
fromUint8Array(array: Uint8Array, nonceLength: number): saltyrtc.Box;
}
interface Cookie {
COOKIE_LENGTH: number;
new(bytes?: Uint8Array): saltyrtc.Cookie;
}
interface CookiePair {
new(ours?: saltyrtc.Cookie, theirs?: saltyrtc.Cookie): saltyrtc.CookiePair;
}
interface CombinedSequence {
SEQUENCE_NUMBER_MAX: number;
OVERFLOW_MAX: number;
new(): saltyrtc.CombinedSequence;
}
interface CombinedSequencePair {
new(ours?: saltyrtc.CombinedSequence, theirs?: number): saltyrtc.CombinedSequencePair;
}
interface EventRegistry {
new(): saltyrtc.EventRegistry;
}
interface Log {
new(level: saltyrtc.LogLevel): saltyrtc.Log;
}
/**
* Static list of close codes.
*/
interface CloseCode {
ClosingNormal: number;
GoingAway: number;
NoSharedSubprotocol: number;
PathFull: number;
ProtocolError: number;
InternalError: number;
Handover: number;
DroppedByInitiator: number;
InitiatorCouldNotDecrypt: number;
NoSharedTask: number;
InvalidKey: number;
}
}
declare var saltyrtcClient: {
exceptions: {
SignalingError: saltyrtc.static.SignalingError,
ProtocolError: saltyrtc.static.ProtocolError,
ConnectionError: saltyrtc.static.ConnectionError,
ValidationError: saltyrtc.static.ValidationError,
CryptoError: saltyrtc.static.CryptoError,
},
SaltyRTCBuilder: saltyrtc.static.SaltyRTCBuilder;
KeyStore: saltyrtc.static.KeyStore;
Box: saltyrtc.static.Box;
Cookie: saltyrtc.static.Cookie;
CookiePair: saltyrtc.static.CookiePair;
CombinedSequence: saltyrtc.static.CombinedSequence;
CombinedSequencePair: saltyrtc.static.CombinedSequencePair;
EventRegistry: saltyrtc.static.EventRegistry;
CloseCode: saltyrtc.static.CloseCode;
explainCloseCode: (code: number) => string;
SignalingError: saltyrtc.static.SignalingError;
ConnectionError: saltyrtc.static.ConnectionError;
Log: saltyrtc.static.Log;
};