oauth2-passkey 0.6.1

OAuth2 and Passkey authentication library for Rust web applications
Documentation
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
use super::*;
use ciborium::value::Value as CborValue;

#[test]
fn test_get_sig_from_stmt_success() {
    // Create a valid attestation statement with alg and sig
    let att_stmt = vec![
        (
            CborValue::Text("alg".to_string()),
            CborValue::Integer(Integer::from(-7)), // ES256
        ),
        (
            CborValue::Text("sig".to_string()),
            CborValue::Bytes(vec![0x01, 0x02, 0x03, 0x04]), // Dummy signature
        ),
    ];

    let result = get_sig_from_stmt(&att_stmt);
    assert!(result.is_ok());

    let (alg, sig) = result.unwrap();
    assert_eq!(alg, -7);
    assert_eq!(sig, vec![0x01, 0x02, 0x03, 0x04]);
}

#[test]
fn test_get_sig_from_stmt_missing_alg() {
    // Create an attestation statement missing the alg field
    let att_stmt = vec![(
        CborValue::Text("sig".to_string()),
        CborValue::Bytes(vec![0x01, 0x02, 0x03, 0x04]), // Dummy signature
    )];

    let result = get_sig_from_stmt(&att_stmt);
    assert!(result.is_err());

    if let Err(PasskeyError::Verification(msg)) = result {
        assert!(msg.contains("Missing algorithm or signature"));
    } else {
        panic!("Expected PasskeyError::Verification");
    }
}

#[test]
fn test_get_sig_from_stmt_missing_sig() {
    // Create an attestation statement missing the sig field
    let att_stmt = vec![(
        CborValue::Text("alg".to_string()),
        CborValue::Integer(Integer::from(-7)), // ES256
    )];

    let result = get_sig_from_stmt(&att_stmt);
    assert!(result.is_err());

    if let Err(PasskeyError::Verification(msg)) = result {
        assert!(msg.contains("Missing algorithm or signature"));
    } else {
        panic!("Expected PasskeyError::Verification");
    }
}

#[test]
fn test_get_sig_from_stmt_wrong_types() {
    // Create an attestation statement with wrong types
    let att_stmt = vec![
        (
            CborValue::Text("alg".to_string()),
            CborValue::Text("ES256".to_string()), // Wrong type for alg
        ),
        (
            CborValue::Text("sig".to_string()),
            CborValue::Integer(Integer::from(123)), // Wrong type for sig
        ),
    ];

    let result = get_sig_from_stmt(&att_stmt);
    assert!(result.is_err());
}

#[test]
fn test_get_sig_from_stmt_empty_statement() {
    // Test with empty attestation statement
    let att_stmt = vec![];

    let result = get_sig_from_stmt(&att_stmt);
    assert!(result.is_err());

    if let Err(PasskeyError::Verification(msg)) = result {
        assert!(msg.contains("Missing algorithm or signature"));
    } else {
        panic!("Expected PasskeyError::Verification");
    }
}

#[test]
fn test_get_sig_from_stmt_irrelevant_keys() {
    // Test with attestation statement containing irrelevant keys but missing required ones
    let att_stmt = vec![
        (
            CborValue::Text("fmt".to_string()),
            CborValue::Text("packed".to_string()),
        ),
        (CborValue::Text("x5c".to_string()), CborValue::Array(vec![])),
    ];

    let result = get_sig_from_stmt(&att_stmt);
    assert!(result.is_err());

    if let Err(PasskeyError::Verification(msg)) = result {
        assert!(msg.contains("Missing algorithm or signature"));
    } else {
        panic!("Expected PasskeyError::Verification");
    }
}

#[test]
fn test_get_sig_from_stmt_empty_signature() {
    // Test with empty signature bytes
    let att_stmt = vec![
        (
            CborValue::Text("alg".to_string()),
            CborValue::Integer(Integer::from(-7)), // ES256
        ),
        (
            CborValue::Text("sig".to_string()),
            CborValue::Bytes(vec![]), // Empty signature
        ),
    ];

    let result = get_sig_from_stmt(&att_stmt);
    assert!(result.is_ok());

    let (alg, sig) = result.unwrap();
    assert_eq!(alg, -7);
    assert_eq!(sig, Vec::<u8>::new()); // Function allows empty signature, validation happens elsewhere
}

#[test]
fn test_integer_to_i64_common_values() {
    // Test common values
    assert_eq!(integer_to_i64(&Integer::from(0)), 0);
    assert_eq!(integer_to_i64(&Integer::from(1)), 1);
    assert_eq!(integer_to_i64(&Integer::from(2)), 2);
    assert_eq!(integer_to_i64(&Integer::from(3)), 3);
    assert_eq!(integer_to_i64(&Integer::from(-1)), -1);
    assert_eq!(integer_to_i64(&Integer::from(-2)), -2);
    assert_eq!(integer_to_i64(&Integer::from(-3)), -3);
    assert_eq!(integer_to_i64(&Integer::from(-7)), -7);

    // Test TPM-specific values
    assert_eq!(integer_to_i64(&Integer::from(-257)), -257);
    assert_eq!(integer_to_i64(&Integer::from(999)), 999);
}

#[test]
fn test_integer_to_i64_arbitrary_values() {
    // After the fix, arbitrary values convert correctly
    assert_eq!(integer_to_i64(&Integer::from(1000000007)), 1000000007);
    assert_eq!(integer_to_i64(&Integer::from(123456789)), 123456789);
    assert_eq!(integer_to_i64(&Integer::from(-65535)), -65535); // RS1 algorithm
    assert_eq!(integer_to_i64(&Integer::from(-259)), -259);
    assert_eq!(integer_to_i64(&Integer::from(i64::MAX)), i64::MAX);
    assert_eq!(integer_to_i64(&Integer::from(i64::MIN)), i64::MIN);
}

#[test]
fn test_integer_to_i64_simplified_powers_of_two() {
    // Test a few key powers of 2 (consolidated from the verbose previous test)
    assert_eq!(integer_to_i64(&Integer::from(4)), 4); // 2^2
    assert_eq!(integer_to_i64(&Integer::from(8)), 8); // 2^3
    assert_eq!(integer_to_i64(&Integer::from(256)), 256); // 2^8
    assert_eq!(integer_to_i64(&Integer::from(1024)), 1024); // 2^10

    // Test negative powers of 2
    assert_eq!(integer_to_i64(&Integer::from(-4)), -4);
    assert_eq!(integer_to_i64(&Integer::from(-8)), -8);
}

#[test]
fn test_extract_public_key_coords_success() {
    // Create a valid COSE key
    let public_key_entries = vec![
        // kty: EC2 (2)
        (
            CborValue::Integer(Integer::from(1)),
            CborValue::Integer(Integer::from(2)),
        ),
        // alg: ES256 (-7)
        (
            CborValue::Integer(Integer::from(3)),
            CborValue::Integer(Integer::from(-7)),
        ),
        // x coordinate (32 bytes)
        (
            CborValue::Integer(Integer::from(-2)),
            CborValue::Bytes(vec![0x01; 32]),
        ),
        // y coordinate (32 bytes)
        (
            CborValue::Integer(Integer::from(-3)),
            CborValue::Bytes(vec![0x02; 32]),
        ),
    ];

    let public_key = CborValue::Map(public_key_entries);

    let result = extract_public_key_coords(&public_key);
    assert!(result.is_ok());

    let (x, y) = result.unwrap();
    assert_eq!(x, vec![0x01; 32]);
    assert_eq!(y, vec![0x02; 32]);
}

#[test]
fn test_extract_public_key_coords_invalid_key_type() {
    // Create a COSE key with invalid key type
    let public_key_entries = vec![
        // kty: Not EC2
        (
            CborValue::Integer(Integer::from(1)),
            CborValue::Integer(Integer::from(1)),
        ),
        // alg: ES256 (-7)
        (
            CborValue::Integer(Integer::from(3)),
            CborValue::Integer(Integer::from(-7)),
        ),
        // x coordinate (32 bytes)
        (
            CborValue::Integer(Integer::from(-2)),
            CborValue::Bytes(vec![0x01; 32]),
        ),
        // y coordinate (32 bytes)
        (
            CborValue::Integer(Integer::from(-3)),
            CborValue::Bytes(vec![0x02; 32]),
        ),
    ];

    let public_key = CborValue::Map(public_key_entries);

    let result = extract_public_key_coords(&public_key);
    assert!(result.is_err());

    if let Err(PasskeyError::Verification(msg)) = result {
        assert!(msg.contains("Invalid key type or algorithm"));
    } else {
        panic!("Expected PasskeyError::Verification");
    }
}

#[test]
fn test_extract_public_key_coords_invalid_algorithm() {
    // Create a COSE key with invalid algorithm
    let public_key_entries = vec![
        // kty: EC2 (2)
        (
            CborValue::Integer(Integer::from(1)),
            CborValue::Integer(Integer::from(2)),
        ),
        // alg: Not ES256
        (
            CborValue::Integer(Integer::from(3)),
            CborValue::Integer(Integer::from(-8)),
        ),
        // x coordinate (32 bytes)
        (
            CborValue::Integer(Integer::from(-2)),
            CborValue::Bytes(vec![0x01; 32]),
        ),
        // y coordinate (32 bytes)
        (
            CborValue::Integer(Integer::from(-3)),
            CborValue::Bytes(vec![0x02; 32]),
        ),
    ];

    let public_key = CborValue::Map(public_key_entries);

    let result = extract_public_key_coords(&public_key);
    assert!(result.is_err());

    if let Err(PasskeyError::Verification(msg)) = result {
        assert!(msg.contains("Invalid key type or algorithm"));
    } else {
        panic!("Expected PasskeyError::Verification");
    }
}

#[test]
fn test_extract_public_key_coords_missing_x() {
    // Create a COSE key missing x coordinate
    let public_key_entries = vec![
        // kty: EC2 (2)
        (
            CborValue::Integer(Integer::from(1)),
            CborValue::Integer(Integer::from(2)),
        ),
        // alg: ES256 (-7)
        (
            CborValue::Integer(Integer::from(3)),
            CborValue::Integer(Integer::from(-7)),
        ),
        // y coordinate (32 bytes)
        (
            CborValue::Integer(Integer::from(-3)),
            CborValue::Bytes(vec![0x02; 32]),
        ),
    ];

    let public_key = CborValue::Map(public_key_entries);

    let result = extract_public_key_coords(&public_key);
    assert!(result.is_err());

    if let Err(PasskeyError::Verification(msg)) = result {
        assert!(msg.contains("Missing public key coordinates"));
    } else {
        panic!("Expected PasskeyError::Verification");
    }
}

#[test]
fn test_extract_public_key_coords_missing_y() {
    // Create a COSE key missing y coordinate
    let public_key_entries = vec![
        // kty: EC2 (2)
        (
            CborValue::Integer(Integer::from(1)),
            CborValue::Integer(Integer::from(2)),
        ),
        // alg: ES256 (-7)
        (
            CborValue::Integer(Integer::from(3)),
            CborValue::Integer(Integer::from(-7)),
        ),
        // x coordinate (32 bytes)
        (
            CborValue::Integer(Integer::from(-2)),
            CborValue::Bytes(vec![0x01; 32]),
        ),
    ];

    let public_key = CborValue::Map(public_key_entries);

    let result = extract_public_key_coords(&public_key);
    assert!(result.is_err());

    if let Err(PasskeyError::Verification(msg)) = result {
        assert!(msg.contains("Missing public key coordinates"));
    } else {
        panic!("Expected PasskeyError::Verification");
    }
}

#[test]
fn test_extract_public_key_coords_invalid_coordinate_length() {
    // Create a COSE key with invalid coordinate length
    let public_key_entries = vec![
        // kty: EC2 (2)
        (
            CborValue::Integer(Integer::from(1)),
            CborValue::Integer(Integer::from(2)),
        ),
        // alg: ES256 (-7)
        (
            CborValue::Integer(Integer::from(3)),
            CborValue::Integer(Integer::from(-7)),
        ),
        // x coordinate (invalid length)
        (
            CborValue::Integer(Integer::from(-2)),
            CborValue::Bytes(vec![0x01; 16]),
        ),
        // y coordinate (32 bytes)
        (
            CborValue::Integer(Integer::from(-3)),
            CborValue::Bytes(vec![0x02; 32]),
        ),
    ];

    let public_key = CborValue::Map(public_key_entries);

    let result = extract_public_key_coords(&public_key);
    assert!(result.is_err());

    if let Err(PasskeyError::Verification(msg)) = result {
        assert!(msg.contains("Invalid coordinate length"));
    } else {
        panic!("Expected PasskeyError::Verification");
    }
}

#[test]
fn test_extract_public_key_coords_invalid_format() {
    // Create an invalid public key (not a map)
    let public_key = CborValue::Array(vec![
        CborValue::Integer(Integer::from(1)),
        CborValue::Integer(Integer::from(2)),
    ]);

    let result = extract_public_key_coords(&public_key);
    assert!(result.is_err());

    if let Err(PasskeyError::Verification(msg)) = result {
        assert!(msg.contains("Invalid public key format"));
    } else {
        panic!("Expected PasskeyError::Verification");
    }
}

#[test]
fn test_extract_public_key_coords_missing_both_coordinates() {
    // Create a COSE key missing both x and y coordinates
    let public_key_entries = vec![
        // kty: EC2 (2)
        (
            CborValue::Integer(Integer::from(1)),
            CborValue::Integer(Integer::from(2)),
        ),
        // alg: ES256 (-7)
        (
            CborValue::Integer(Integer::from(3)),
            CborValue::Integer(Integer::from(-7)),
        ),
    ];

    let public_key = CborValue::Map(public_key_entries);

    let result = extract_public_key_coords(&public_key);
    assert!(result.is_err());

    if let Err(PasskeyError::Verification(msg)) = result {
        assert!(msg.contains("Missing public key coordinates"));
    } else {
        panic!("Expected PasskeyError::Verification");
    }
}

#[test]
fn test_extract_public_key_coords_zero_length_coordinates() {
    // Create a COSE key with zero-length coordinates
    let public_key_entries = vec![
        // kty: EC2 (2)
        (
            CborValue::Integer(Integer::from(1)),
            CborValue::Integer(Integer::from(2)),
        ),
        // alg: ES256 (-7)
        (
            CborValue::Integer(Integer::from(3)),
            CborValue::Integer(Integer::from(-7)),
        ),
        // x coordinate (zero length)
        (
            CborValue::Integer(Integer::from(-2)),
            CborValue::Bytes(vec![]),
        ),
        // y coordinate (32 bytes)
        (
            CborValue::Integer(Integer::from(-3)),
            CborValue::Bytes(vec![0x02; 32]),
        ),
    ];

    let public_key = CborValue::Map(public_key_entries);

    let result = extract_public_key_coords(&public_key);
    assert!(result.is_err());

    if let Err(PasskeyError::Verification(msg)) = result {
        assert!(msg.contains("Invalid coordinate length"));
    } else {
        panic!("Expected PasskeyError::Verification");
    }
}

#[test]
fn test_extract_public_key_coords_boundary_lengths() {
    // Test coordinate lengths at boundaries (31 and 33 bytes)
    let test_cases = vec![(31, "too short"), (33, "too long")];

    for (length, description) in test_cases {
        let public_key_entries = vec![
            // kty: EC2 (2)
            (
                CborValue::Integer(Integer::from(1)),
                CborValue::Integer(Integer::from(2)),
            ),
            // alg: ES256 (-7)
            (
                CborValue::Integer(Integer::from(3)),
                CborValue::Integer(Integer::from(-7)),
            ),
            // x coordinate (boundary length)
            (
                CborValue::Integer(Integer::from(-2)),
                CborValue::Bytes(vec![0x01; length]),
            ),
            // y coordinate (32 bytes)
            (
                CborValue::Integer(Integer::from(-3)),
                CborValue::Bytes(vec![0x02; 32]),
            ),
        ];

        let public_key = CborValue::Map(public_key_entries);

        let result = extract_public_key_coords(&public_key);
        assert!(
            result.is_err(),
            "Should fail for {description} coordinate length"
        );

        if let Err(PasskeyError::Verification(msg)) = result {
            assert!(msg.contains("Invalid coordinate length"));
        } else {
            panic!("Expected PasskeyError::Verification for {description} length");
        }
    }
}

#[test]
fn test_extract_public_key_coords_empty_map() {
    // Test with completely empty map
    let public_key = CborValue::Map(vec![]);

    let result = extract_public_key_coords(&public_key);
    assert!(result.is_err());

    if let Err(PasskeyError::Verification(msg)) = result {
        assert!(msg.contains("Invalid key type or algorithm"));
    } else {
        panic!("Expected PasskeyError::Verification");
    }
}