summaryrefslogtreecommitdiffhomepage
path: root/packages/server/src/authentication/verifyAuthenticationResponse.test.ts
blob: f4046a6a474625359fa577e47b209d2fdb4546d4 (plain)
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
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
import {
  assert,
  assertEquals,
  assertExists,
  assertRejects,
} from 'https://deno.land/std@0.198.0/assert/mod.ts';
import { returnsNext, stub } from 'https://deno.land/std@0.198.0/testing/mock.ts';

import { verifyAuthenticationResponse } from './verifyAuthenticationResponse.ts';

import { _decodeClientDataJSONInternals } from '../helpers/decodeClientDataJSON.ts';
import {
  _parseAuthenticatorDataInternals,
  parseAuthenticatorData,
} from '../helpers/parseAuthenticatorData.ts';
import { toHash } from '../helpers/toHash.ts';
import { AuthenticationResponseJSON, AuthenticatorDevice } from '../deps.ts';
import { isoBase64URL, isoUint8Array } from '../helpers/iso/index.ts';
import { assertObjectMatch } from 'https://deno.land/std@0.198.0/assert/assert_object_match.ts';
import { assertFalse } from 'https://deno.land/std@0.198.0/assert/assert_false.ts';

Deno.test('should verify an assertion response', async () => {
  const verification = await verifyAuthenticationResponse({
    response: assertionResponse,
    expectedChallenge: assertionChallenge,
    expectedOrigin: assertionOrigin,
    expectedRPID: 'dev.dontneeda.pw',
    authenticator: authenticator,
    requireUserVerification: false,
  });

  assertEquals(verification.verified, true);
});

Deno.test('should return authenticator info after verification', async () => {
  const verification = await verifyAuthenticationResponse({
    response: assertionResponse,
    expectedChallenge: assertionChallenge,
    expectedOrigin: assertionOrigin,
    expectedRPID: 'dev.dontneeda.pw',
    authenticator: authenticator,
    requireUserVerification: false,
  });

  assertEquals(verification.authenticationInfo.newCounter, 144);
  assertEquals(
    verification.authenticationInfo.credentialID,
    authenticator.credentialID,
  );
  assertEquals(verification.authenticationInfo?.origin, assertionOrigin);
  assertEquals(verification.authenticationInfo?.rpID, 'dev.dontneeda.pw');
});

Deno.test('should throw when response challenge is not expected value', async () => {
  await assertRejects(
    () =>
      verifyAuthenticationResponse({
        response: assertionResponse,
        expectedChallenge: 'shouldhavebeenthisvalue',
        expectedOrigin: 'https://different.address',
        expectedRPID: 'dev.dontneeda.pw',
        authenticator: authenticator,
      }),
    Error,
    'authentication response challenge',
  );
});

Deno.test('should throw when response origin is not expected value', async () => {
  await assertRejects(
    () =>
      verifyAuthenticationResponse({
        response: assertionResponse,
        expectedChallenge: assertionChallenge,
        expectedOrigin: 'https://different.address',
        expectedRPID: 'dev.dontneeda.pw',
        authenticator: authenticator,
      }),
    Error,
    'authentication response origin',
  );
});

Deno.test('should throw when assertion type is not webauthn.create', async () => {
  const mockDecodeClientData = stub(
    _decodeClientDataJSONInternals,
    'stubThis',
    returnsNext([
      {
        origin: assertionOrigin,
        type: 'webauthn.badtype',
        challenge: assertionChallenge,
      },
    ]),
  );

  await assertRejects(
    () =>
      verifyAuthenticationResponse({
        response: assertionResponse,
        expectedChallenge: assertionChallenge,
        expectedOrigin: assertionOrigin,
        expectedRPID: 'dev.dontneeda.pw',
        authenticator: authenticator,
      }),
    Error,
    'authentication response type',
  );

  mockDecodeClientData.restore();
});

Deno.test('should throw error if user was not present', async () => {
  const mockParseAuthData = stub(
    _parseAuthenticatorDataInternals,
    'stubThis',
    // @ts-ignore: Only return the values that matter
    returnsNext([
      {
        rpIdHash: await toHash(
          isoUint8Array.fromASCIIString('dev.dontneeda.pw'),
        ),
        flags: { up: false },
      },
    ]),
  );

  await assertRejects(
    () =>
      verifyAuthenticationResponse({
        response: assertionResponse,
        expectedChallenge: assertionChallenge,
        expectedOrigin: assertionOrigin,
        expectedRPID: 'dev.dontneeda.pw',
        authenticator: authenticator,
      }),
    Error,
    'not present',
  );

  mockParseAuthData.restore();
});

Deno.test('should throw error if previous counter value is not less than in response', async () => {
  // This'll match the `counter` value in `assertionResponse`, simulating a potential replay attack
  const badCounter = 144;
  const badDevice = {
    ...authenticator,
    counter: badCounter,
  };

  await assertRejects(
    () =>
      verifyAuthenticationResponse({
        response: assertionResponse,
        expectedChallenge: assertionChallenge,
        expectedOrigin: assertionOrigin,
        expectedRPID: 'dev.dontneeda.pw',
        authenticator: badDevice,
        requireUserVerification: false,
      }),
    Error,
    'counter value',
  );
});

Deno.test('should throw error if assertion RP ID is unexpected value', async () => {
  const mockParseAuthData = stub(
    _parseAuthenticatorDataInternals,
    'stubThis',
    // @ts-ignore: Only return the values that matter
    returnsNext([
      {
        rpIdHash: await toHash(isoUint8Array.fromASCIIString('bad.url')),
        flags: 0,
      },
    ]),
  );

  await assertRejects(
    () =>
      verifyAuthenticationResponse({
        response: assertionResponse,
        expectedChallenge: assertionChallenge,
        expectedOrigin: assertionOrigin,
        expectedRPID: 'dev.dontneeda.pw',
        authenticator: authenticator,
      }),
    Error,
    'RP ID',
  );

  mockParseAuthData.restore();
});

Deno.test('should not compare counters if both are 0', async () => {
  const verification = await verifyAuthenticationResponse({
    response: assertionFirstTimeUsedResponse,
    expectedChallenge: assertionFirstTimeUsedChallenge,
    expectedOrigin: assertionFirstTimeUsedOrigin,
    expectedRPID: 'dev.dontneeda.pw',
    authenticator: authenticatorFirstTimeUsed,
    requireUserVerification: false,
  });

  assertEquals(verification.verified, true);
});

Deno.test('should throw an error if user verification is required but user was not verified', async () => {
  const actualData = parseAuthenticatorData(
    isoBase64URL.toBuffer(assertionResponse.response.authenticatorData),
  );

  const mockParseAuthData = stub(
    _parseAuthenticatorDataInternals,
    'stubThis',
    // @ts-ignore: Only return the values that matter
    returnsNext([
      {
        ...actualData,
        flags: {
          up: true,
          uv: false,
        },
      },
    ]),
  );

  await assertRejects(
    () =>
      verifyAuthenticationResponse({
        response: assertionResponse,
        expectedChallenge: assertionChallenge,
        expectedOrigin: assertionOrigin,
        expectedRPID: 'dev.dontneeda.pw',
        authenticator: authenticator,
        requireUserVerification: true,
      }),
    Error,
    'user could not be verified',
  );

  mockParseAuthData.restore();
});

// TODO: Get a real TPM authentication response in here
Deno.test('should verify TPM assertion', { ignore: true }, async () => {
  const expectedChallenge = 'dG90YWxseVVuaXF1ZVZhbHVlRXZlcnlBc3NlcnRpb24';
  // jest.spyOn(isoBase64URL, "toString").mockReturnValueOnce(expectedChallenge);
  const verification = await verifyAuthenticationResponse({
    response: {
      id: 'YJ8FMM-AmcUt73XPX341WXWd7ypBMylGjjhu0g3VzME',
      rawId: 'YJ8FMM-AmcUt73XPX341WXWd7ypBMylGjjhu0g3VzME',
      response: {
        authenticatorData: 'PdxHEOnAiLIp26idVjIguzn3Ipr_RlsKZWsa-5qK-KAFAAAAAQ',
        clientDataJSON:
          'eyJ0eXBlIjoid2ViYXV0aG4uZ2V0IiwiY2hhbGxlbmdlIjoiZEc5MFlXeHNlVlZ1YVhGMVpWWmhiSFZsUlhabGNubEJjM05sY25ScGIyNCIsIm9yaWdpbiI6Imh0dHBzOi8vZGV2LmRvbnRuZWVkYS5wdyIsImNyb3NzT3JpZ2luIjpmYWxzZX0',
        signature:
          'T6nS6IDnfXmt_f2BEzIvw86RrHCpmf_OQIbiY-OBgk4jyKakYF34tnpdajQnIHTCa3-56RWDa_tZGQwZopEcrWRgSONKnMEboNhsw0aTYDo2q4fICD33qVFUuBIEcWJJyv1RqfW3uvPZAq1yvif81xPWYgF796fx7fFZzbBQARbUjNPudBuwgONljRbDstRhqnrP_b7h0-_CQ8EBJIR7Bor-R5I6JYsNWeR9r0wRPkpIhNRND-y6or6Shm2NXhr-ovLtnzpdouzlrJUJWnBJquWAjtiXKZsGfsY9Srh7jduoyKyPkwItPewcdlV30uUFCtPMepaJ5lUwbBtRE0NsXg',
        userHandle: 'aW50ZXJuYWxVc2VySWQ',
      },
      type: 'public-key',
      clientExtensionResults: {},
    },
    expectedChallenge,
    expectedOrigin: assertionOrigin,
    expectedRPID: 'dev.dontneeda.pw',
    authenticator: {
      credentialPublicKey: isoBase64URL.toBuffer('BAEAAQ'),
      credentialID: 'YJ8FMM-AmcUt73XPX341WXWd7ypBMylGjjhu0g3VzME',
      counter: 0,
    },
  });

  assert(verification.verified);
});

Deno.test('should support multiple possible origins', async () => {
  const verification = await verifyAuthenticationResponse({
    response: assertionResponse,
    expectedChallenge: assertionChallenge,
    expectedOrigin: ['https://simplewebauthn.dev', assertionOrigin],
    expectedRPID: 'dev.dontneeda.pw',
    authenticator: authenticator,
    requireUserVerification: false,
  });

  assert(verification.verified);
  assertEquals(verification.authenticationInfo?.origin, assertionOrigin);
});

Deno.test('should throw an error if origin not in list of expected origins', async () => {
  await assertRejects(
    () =>
      verifyAuthenticationResponse({
        response: assertionResponse,
        expectedChallenge: assertionChallenge,
        expectedOrigin: ['https://simplewebauthn.dev', 'https://fizz.buzz'],
        expectedRPID: 'dev.dontneeda.pw',
        authenticator: authenticator,
      }),
    Error,
    'Unexpected authentication response origin',
  );
});

Deno.test('should support multiple possible RP IDs', async () => {
  const verification = await verifyAuthenticationResponse({
    response: assertionResponse,
    expectedChallenge: assertionChallenge,
    expectedOrigin: assertionOrigin,
    expectedRPID: ['dev.dontneeda.pw', 'simplewebauthn.dev'],
    authenticator: authenticator,
    requireUserVerification: false,
  });

  assert(verification.verified);
  assertEquals(verification.authenticationInfo?.rpID, 'dev.dontneeda.pw');
});

Deno.test('should throw an error if RP ID not in list of possible RP IDs', async () => {
  await assertRejects(
    () =>
      verifyAuthenticationResponse({
        response: assertionResponse,
        expectedChallenge: assertionChallenge,
        expectedOrigin: assertionOrigin,
        expectedRPID: ['simplewebauthn.dev'],
        authenticator: authenticator,
      }),
    Error,
    'Unexpected RP ID',
  );
});

Deno.test('should throw an error if type not the expected type', async () => {
  await assertRejects(
    () =>
      verifyAuthenticationResponse({
        response: assertionResponse,
        expectedChallenge: assertionChallenge,
        expectedOrigin: assertionOrigin,
        // assertionResponse contains webauthn.get, this should produce an error
        expectedType: 'payment.get',
        expectedRPID: 'localhost',
        authenticator: authenticator,
      }),
    Error,
    'Unexpected authentication response type',
  );
});

Deno.test('should throw an error if type not in list of expected types', async () => {
  await assertRejects(
    () =>
      verifyAuthenticationResponse({
        response: assertionResponse,
        expectedChallenge: assertionChallenge,
        expectedOrigin: assertionOrigin,
        // assertionResponse contains webauthn.get, this should produce an error
        expectedType: ['payment.get', 'something.get'],
        expectedRPID: 'localhost',
        authenticator: authenticator,
      }),
    Error,
    'Unexpected authentication response type',
  );
});

Deno.test('should pass verification if custom challenge verifier returns true', async () => {
  const verification = await verifyAuthenticationResponse({
    response: {
      id:
        'AaIBxnYfL2pDWJmIii6CYgHBruhVvFGHheWamphVioG_TnEXxKA9MW4FWnJh21zsbmRpRJso9i2JmAtWOtXfVd4oXTgYVusXwhWWsA',
      rawId:
        'AaIBxnYfL2pDWJmIii6CYgHBruhVvFGHheWamphVioG_TnEXxKA9MW4FWnJh21zsbmRpRJso9i2JmAtWOtXfVd4oXTgYVusXwhWWsA',
      response: {
        authenticatorData: 'SZYN5YgOjGh0NBcPZHZgW4_krrmihjLHmVzzuoMdl2MFYftypQ',
        clientDataJSON:
          'eyJ0eXBlIjoid2ViYXV0aG4uZ2V0IiwiY2hhbGxlbmdlIjoiZXlKaFkzUjFZV3hEYUdGc2JHVnVaMlVpT2lKTE0xRjRUMnB1VmtwTWFVZHNibFpGY0RWMllUVlJTbVZOVmxkT1psODNVRmxuZFhSbllrRjBRVlZCSWl3aVlYSmlhWFJ5WVhKNVJHRjBZU0k2SW5OcFoyNU5aVkJzWldGelpTSjkiLCJvcmlnaW4iOiJodHRwOi8vbG9jYWxob3N0OjgwMDAiLCJjcm9zc09yaWdpbiI6ZmFsc2V9',
        signature:
          'MEUCIByFAVGfkoKPEzynp-37BX_HOXSaC6-58-ELjB7BG9opAiEAyD_1mN9YAPrphcwpzK3ym2Xx8EjAapgQ326mKgQ1pW0',
        userHandle: 'internalUserId',
      },
      type: 'public-key',
      clientExtensionResults: {},
    },
    expectedChallenge: (challenge: string) => {
      const parsedChallenge: {
        actualChallenge: string;
        arbitraryData: string;
      } = JSON.parse(
        isoBase64URL.toUTF8String(challenge),
      );
      return parsedChallenge.actualChallenge ===
        'K3QxOjnVJLiGlnVEp5va5QJeMVWNf_7PYgutgbAtAUA';
    },
    expectedOrigin: 'http://localhost:8000',
    expectedRPID: 'localhost',
    authenticator: {
      credentialID:
        'AaIBxnYfL2pDWJmIii6CYgHBruhVvFGHheWamphVioG_TnEXxKA9MW4FWnJh21zsbmRpRJso9i2JmAtWOtXfVd4oXTgYVusXwhWWsA',
      credentialPublicKey: isoBase64URL.toBuffer(
        'pQECAyYgASFYILTrxTUQv3X4DRM6L_pk65FSMebenhCx3RMsTKoBm-AxIlggEf3qk5552QLNSh1T1oQs7_2C2qysDwN4r4fCp52Hsqs',
      ),
      counter: 0,
    },
  });

  assert(verification.verified);
});

Deno.test('should fail verification if custom challenge verifier returns false', async () => {
  await assertRejects(
    () =>
      verifyAuthenticationResponse({
        response: assertionResponse,
        expectedChallenge: (challenge) => challenge === 'willNeverMatch',
        expectedOrigin: assertionOrigin,
        expectedRPID: 'dev.dontneeda.pw',
        authenticator: authenticator,
      }),
    Error,
    'Custom challenge verifier returned false',
  );
});

Deno.test('should pass verification if custom challenge verifier returns a Promise that resolves with true', async () => {
  const verification = await verifyAuthenticationResponse({
    response: {
      id:
        'AaIBxnYfL2pDWJmIii6CYgHBruhVvFGHheWamphVioG_TnEXxKA9MW4FWnJh21zsbmRpRJso9i2JmAtWOtXfVd4oXTgYVusXwhWWsA',
      rawId:
        'AaIBxnYfL2pDWJmIii6CYgHBruhVvFGHheWamphVioG_TnEXxKA9MW4FWnJh21zsbmRpRJso9i2JmAtWOtXfVd4oXTgYVusXwhWWsA',
      response: {
        authenticatorData: 'SZYN5YgOjGh0NBcPZHZgW4_krrmihjLHmVzzuoMdl2MFYftypQ',
        clientDataJSON:
          'eyJ0eXBlIjoid2ViYXV0aG4uZ2V0IiwiY2hhbGxlbmdlIjoiZXlKaFkzUjFZV3hEYUdGc2JHVnVaMlVpT2lKTE0xRjRUMnB1VmtwTWFVZHNibFpGY0RWMllUVlJTbVZOVmxkT1psODNVRmxuZFhSbllrRjBRVlZCSWl3aVlYSmlhWFJ5WVhKNVJHRjBZU0k2SW5OcFoyNU5aVkJzWldGelpTSjkiLCJvcmlnaW4iOiJodHRwOi8vbG9jYWxob3N0OjgwMDAiLCJjcm9zc09yaWdpbiI6ZmFsc2V9',
        signature:
          'MEUCIByFAVGfkoKPEzynp-37BX_HOXSaC6-58-ELjB7BG9opAiEAyD_1mN9YAPrphcwpzK3ym2Xx8EjAapgQ326mKgQ1pW0',
        userHandle: 'internalUserId',
      },
      type: 'public-key',
      clientExtensionResults: {},
    },
    expectedChallenge: (challenge: string) => {
      const parsedChallenge: {
        actualChallenge: string;
        arbitraryData: string;
      } = JSON.parse(
        isoBase64URL.toUTF8String(challenge),
      );
      return Promise.resolve(
        parsedChallenge.actualChallenge ===
          'K3QxOjnVJLiGlnVEp5va5QJeMVWNf_7PYgutgbAtAUA',
      );
    },
    expectedOrigin: 'http://localhost:8000',
    expectedRPID: 'localhost',
    authenticator: {
      credentialID:
        'AaIBxnYfL2pDWJmIii6CYgHBruhVvFGHheWamphVioG_TnEXxKA9MW4FWnJh21zsbmRpRJso9i2JmAtWOtXfVd4oXTgYVusXwhWWsA',
      credentialPublicKey: isoBase64URL.toBuffer(
        'pQECAyYgASFYILTrxTUQv3X4DRM6L_pk65FSMebenhCx3RMsTKoBm-AxIlggEf3qk5552QLNSh1T1oQs7_2C2qysDwN4r4fCp52Hsqs',
      ),
      counter: 0,
    },
  });

  assert(verification.verified);
});

Deno.test('should fail verification if custom challenge verifier returns a Promise that resolves with false', async () => {
  await assertRejects(
    () =>
      verifyAuthenticationResponse({
        response: assertionResponse,
        expectedChallenge: (challenge) => Promise.resolve(challenge === 'willNeverMatch'),
        expectedOrigin: assertionOrigin,
        expectedRPID: 'dev.dontneeda.pw',
        authenticator: authenticator,
      }),
    Error,
    'Custom challenge verifier returned false',
  );
});

Deno.test('should fail verification if custom challenge verifier returns a Promise that rejects', async () => {
  await assertRejects(
    () =>
      verifyAuthenticationResponse({
        response: assertionResponse,
        expectedChallenge: () => Promise.reject(new Error('rejected')),
        expectedOrigin: assertionOrigin,
        expectedRPID: 'dev.dontneeda.pw',
        authenticator: authenticator,
      }),
    Error,
    'rejected',
  );
});

Deno.test('should return authenticator extension output', async () => {
  const verification = await verifyAuthenticationResponse({
    response: {
      response: {
        clientDataJSON:
          'eyJ0eXBlIjoid2ViYXV0aG4uZ2V0IiwiY2hhbGxlbmdlIjoiaVpzVkN6dHJEVzdEMlVfR0hDSWxZS0x3VjJiQ3NCVFJxVlFVbkpYbjlUayIsIm9yaWdpbiI6ImFuZHJvaWQ6YXBrLWtleS1oYXNoOmd4N3NxX3B4aHhocklRZEx5ZkcwcHhLd2lKN2hPazJESlE0eHZLZDQzOFEiLCJhbmRyb2lkUGFja2FnZU5hbWUiOiJjb20uZmlkby5leGFtcGxlLmZpZG8yYXBpZXhhbXBsZSJ9',
        authenticatorData:
          'DXX8xWP9p3nbLjQ-6kiYiHWLeFSdSTpP2-oc2WqjHMSFAAAAAKFsZGV2aWNlUHViS2V5pWNkcGtYTaUBAgMmIAEhWCCZGqvtneQnGp7erYgG-dyW1tzNDEdiU6VRBInsg3m-WyJYIKCXPP3tu3nif-9O50gWc_szElBN3KVDTP0jQx1q0p7aY3NpZ1hHMEUCIElSbNKK72tOYhp9WTbStQSVL8CuIxOk8DV6r_-uqWR0AiEAnVE6yu-wsyx2Wq5v66jClGhe_2P_HL8R7PIQevT-uPhlbm9uY2VAZXNjb3BlQQBmYWFndWlkULk_2WHy5kYvsSKCACJH3ng',
        signature:
          'MEYCIQDlRuxY7cYre0sb3T6TovQdfYIUb72cRZYOQv_zS9wN_wIhAOvN-fwjtyIhWRceqJV4SX74-z6oALERbC7ohk8EdVPO',
        userHandle: 'b2FPajFxcmM4MWo3QkFFel9RN2lEakh5RVNlU2RLNDF0Sl92eHpQYWV5UQ==',
      },
      id: 'E_Pko4wN1BXE23S0ftN3eQ',
      rawId: 'E_Pko4wN1BXE23S0ftN3eQ',
      type: 'public-key',
      clientExtensionResults: {},
    },
    expectedOrigin: 'android:apk-key-hash:gx7sq_pxhxhrIQdLyfG0pxKwiJ7hOk2DJQ4xvKd438Q',
    expectedRPID: 'try-webauthn.appspot.com',
    expectedChallenge: 'iZsVCztrDW7D2U_GHCIlYKLwV2bCsBTRqVQUnJXn9Tk',
    authenticator: {
      credentialID:
        'AaIBxnYfL2pDWJmIii6CYgHBruhVvFGHheWamphVioG_TnEXxKA9MW4FWnJh21zsbmRpRJso9i2JmAtWOtXfVd4oXTgYVusXwhWWsA',
      credentialPublicKey: isoBase64URL.toBuffer(
        'pQECAyYgASFYILTrxTUQv3X4DRM6L_pk65FSMebenhCx3RMsTKoBm-AxIlggEf3qk5552QLNSh1T1oQs7_2C2qysDwN4r4fCp52Hsqs',
      ),
      counter: 0,
    },
  });

  assertObjectMatch(
    verification.authenticationInfo!.authenticatorExtensionResults!,
    {
      devicePubKey: {
        dpk: isoUint8Array.fromHex(
          'A5010203262001215820991AABED9DE4271A9EDEAD8806F9DC96D6DCCD0C476253A5510489EC8379BE5B225820A0973CFDEDBB79E27FEF4EE7481673FB3312504DDCA5434CFD23431D6AD29EDA',
        ),
        sig: isoUint8Array.fromHex(
          '3045022049526CD28AEF6B4E621A7D5936D2B504952FC0AE2313A4F0357AAFFFAEA964740221009D513ACAEFB0B32C765AAE6FEBA8C294685EFF63FF1CBF11ECF2107AF4FEB8F8',
        ),
        nonce: isoUint8Array.fromHex(''),
        scope: isoUint8Array.fromHex('00'),
        aaguid: isoUint8Array.fromHex('B93FD961F2E6462FB12282002247DE78'),
      },
    },
  );
});

Deno.test('should return credential backup info', async () => {
  const verification = await verifyAuthenticationResponse({
    response: assertionResponse,
    expectedChallenge: assertionChallenge,
    expectedOrigin: assertionOrigin,
    expectedRPID: 'dev.dontneeda.pw',
    authenticator: authenticator,
    requireUserVerification: false,
  });

  assertEquals(
    verification.authenticationInfo?.credentialDeviceType,
    'singleDevice',
  );
  assertEquals(verification.authenticationInfo?.credentialBackedUp, false);
});

Deno.test('should return user verified flag after successful auth', async () => {
  const verification = await verifyAuthenticationResponse({
    response: assertionResponse,
    expectedChallenge: assertionChallenge,
    expectedOrigin: assertionOrigin,
    expectedRPID: 'dev.dontneeda.pw',
    authenticator: authenticator,
    requireUserVerification: false,
  });

  assertExists(verification.authenticationInfo?.userVerified);
  assertFalse(verification.authenticationInfo?.userVerified);
});

/**
 * Assertion examples below
 */

const assertionResponse: AuthenticationResponseJSON = {
  id: 'KEbWNCc7NgaYnUyrNeFGX9_3Y-8oJ3KwzjnaiD1d1LVTxR7v3CaKfCz2Vy_g_MHSh7yJ8yL0Pxg6jo_o0hYiew',
  rawId: 'KEbWNCc7NgaYnUyrNeFGX9_3Y-8oJ3KwzjnaiD1d1LVTxR7v3CaKfCz2Vy_g_MHSh7yJ8yL0Pxg6jo_o0hYiew',
  response: {
    authenticatorData: 'PdxHEOnAiLIp26idVjIguzn3Ipr_RlsKZWsa-5qK-KABAAAAkA==',
    clientDataJSON: 'eyJjaGFsbGVuZ2UiOiJkRzkwWVd4c2VWVnVhWEYxWlZaaGJIVmxSWFpsY25sVWFXMWwiLCJj' +
      'bGllbnRFeHRlbnNpb25zIjp7fSwiaGFzaEFsZ29yaXRobSI6IlNIQS0yNTYiLCJvcmlnaW4iOiJodHRwczovL2Rldi5k' +
      'b250bmVlZGEucHciLCJ0eXBlIjoid2ViYXV0aG4uZ2V0In0=',
    signature: 'MEUCIQDYXBOpCWSWq2Ll4558GJKD2RoWg958lvJSB_GdeokxogIgWuEVQ7ee6AswQY0OsuQ6y8Ks6' +
      'jhd45bDx92wjXKs900=',
  },
  clientExtensionResults: {},
  type: 'public-key',
};
const assertionChallenge = isoBase64URL.fromUTF8String(
  'totallyUniqueValueEveryTime',
);
const assertionOrigin = 'https://dev.dontneeda.pw';

const authenticator: AuthenticatorDevice = {
  credentialPublicKey: isoBase64URL.toBuffer(
    'pQECAyYgASFYIIheFp-u6GvFT2LNGovf3ZrT0iFVBsA_76rRysxRG9A1Ilgg8WGeA6hPmnab0HAViUYVRkwTNcN77QBf_RR0dv3lIvQ',
  ),
  credentialID:
    'KEbWNCc7NgaYnUyrNeFGX9_3Y-8oJ3KwzjnaiD1d1LVTxR7v3CaKfCz2Vy_g_MHSh7yJ8yL0Pxg6jo_o0hYiew',
  counter: 143,
};

/**
 * Represented a device that's being used on the website for the first time
 */
const assertionFirstTimeUsedResponse: AuthenticationResponseJSON = {
  id: 'wSisR0_4hlzw3Y1tj4uNwwifIhRa-ZxWJwWbnfror0pVK9qPdBPO5pW3gasPqn6wXHb0LNhXB_IrA1nFoSQJ9A',
  rawId: 'wSisR0_4hlzw3Y1tj4uNwwifIhRa-ZxWJwWbnfror0pVK9qPdBPO5pW3gasPqn6wXHb0LNhXB_IrA1nFoSQJ9A',
  response: {
    authenticatorData: 'PdxHEOnAiLIp26idVjIguzn3Ipr_RlsKZWsa-5qK-KABAAAAAA',
    clientDataJSON:
      'eyJjaGFsbGVuZ2UiOiJkRzkwWVd4c2VWVnVhWEYxWlZaaGJIVmxSWFpsY25sQmMzTmxjblJwYjI0IiwiY2xpZW50RXh0ZW5zaW9ucyI6e30sImhhc2hBbGdvcml0aG0iOiJTSEEtMjU2Iiwib3JpZ2luIjoiaHR0cHM6Ly9kZXYuZG9udG5lZWRhLnB3IiwidHlwZSI6IndlYmF1dGhuLmdldCJ9',
    signature:
      'MEQCIBu6M-DGzu1O8iocGHEj0UaAZm0HmxTeRIE6-nS3_CPjAiBDsmIzy5sacYwwzgpXqfwRt_2vl5yiQZ_OAqWJQBGVsQ',
  },
  type: 'public-key',
  clientExtensionResults: {},
};
const assertionFirstTimeUsedChallenge = isoBase64URL.fromUTF8String(
  'totallyUniqueValueEveryAssertion',
);
const assertionFirstTimeUsedOrigin = 'https://dev.dontneeda.pw';
const authenticatorFirstTimeUsed: AuthenticatorDevice = {
  credentialPublicKey: isoBase64URL.toBuffer(
    'pQECAyYgASFYIGmaxR4mBbukc2QhtW2ldhAAd555r-ljlGQN8MbcTnPPIlgg9CyUlE-0AB2fbzZbNgBvJuRa7r6o2jPphOmtyNPR_kY',
  ),
  credentialID:
    'wSisR0_4hlzw3Y1tj4uNwwifIhRa-ZxWJwWbnfror0pVK9qPdBPO5pW3gasPqn6wXHb0LNhXB_IrA1nFoSQJ9A',
  counter: 0,
};