passless-rs 0.10.1

FIDO2 security token emulator
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
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
//! FIDO2 Client Management Commands

use std::collections::HashMap;

use passless_core::{OutputFormat, Result};

use rpassword::read_password;

use serde::Serialize;

use soft_fido2::request::{
    CredentialManagementRequest, DeleteCredentialRequest, EnumerateCredentialsRequest,
    UpdateUserRequest,
};
use soft_fido2::{Client, PinProtocol, Transport, TransportList};

/// Device information for enumeration
#[derive(Debug, Clone)]
struct DeviceInfo {
    index: usize,
    name: String,
    aaguid_hex: String,
    versions: String,
}

/// JSON output structure for credential listing
#[derive(Serialize)]
struct ListOutput {
    #[serde(skip_serializing_if = "Option::is_none")]
    filter: Option<String>,
    total_rps: usize,
    #[serde(skip_serializing_if = "Option::is_none")]
    filtered_rps: Option<usize>,
    total_credentials: usize,
    relying_parties: Vec<RpOutput>,
}

/// Relying party information in JSON output
#[derive(Serialize)]
struct RpOutput {
    id: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    name: Option<String>,
    #[serde(serialize_with = "serialize_hex")]
    rp_id_hash: Vec<u8>,
    credentials: Vec<CredentialOutput>,
}

/// Credential information in JSON output
#[derive(Serialize)]
struct CredentialOutput {
    #[serde(serialize_with = "serialize_hex")]
    user_id: Vec<u8>,
    #[serde(skip_serializing_if = "Option::is_none")]
    user_name: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    display_name: Option<String>,
    #[serde(serialize_with = "serialize_hex")]
    credential_id: Vec<u8>,
    #[serde(skip_serializing_if = "Option::is_none")]
    cred_protect: Option<u8>,
}

/// Serialize byte vectors as hex strings in JSON output
fn serialize_hex<S>(data: &Vec<u8>, serializer: S) -> std::result::Result<S::Ok, S::Error>
where
    S: serde::Serializer,
{
    serializer.serialize_str(&hex::encode(data))
}

/// Convert AAGUID hex string to human-readable device name
fn aaguid_hex_to_name(aaguid_hex: &str) -> String {
    if let Ok(bytes) = hex::decode(aaguid_hex)
        && let Ok(s) = String::from_utf8(bytes)
        && s.chars()
            .all(|c| c.is_ascii_graphic() || c == '.' || c == '-')
    {
        return s;
    }
    "FIDO2 Authenticator".to_string()
}

/// Query authenticator information via getInfo command
fn query_device_info(transport: &mut Transport) -> (String, String) {
    match Client::authenticator_get_info(transport) {
        Ok(response) => {
            if let Ok(info_value) =
                soft_fido2_ctap::cbor::decode::<soft_fido2_ctap::cbor::Value>(&response)
                && let Ok(info) = parse_authenticator_info(&info_value)
            {
                let aaguid_hex = info
                    .aaguid
                    .as_ref()
                    .map(hex::encode)
                    .unwrap_or_else(|| "unknown".to_string());
                let versions = info
                    .versions
                    .unwrap_or_else(|| vec!["FIDO2".to_string()])
                    .join(", ");
                return (aaguid_hex, versions);
            }
            ("unknown".to_string(), "FIDO2".to_string())
        }
        Err(_) => ("unknown".to_string(), "FIDO2".to_string()),
    }
}

/// Collect information about all available devices
fn enumerate_device_info(list: &TransportList) -> Vec<DeviceInfo> {
    (0..list.len())
        .filter_map(|i| {
            let mut transport = list.get(i)?;

            let (aaguid_hex, versions) = if transport.open().is_ok() {
                let info = query_device_info(&mut transport);
                transport.close();
                info
            } else {
                ("unavailable".to_string(), "FIDO2".to_string())
            };

            let name = aaguid_hex_to_name(&aaguid_hex);

            Some(DeviceInfo {
                index: i,
                name,
                aaguid_hex,
                versions,
            })
        })
        .collect()
}

/// Format device list for error messages
fn format_device_list(devices: &[DeviceInfo]) -> String {
    devices
        .iter()
        .map(|d| format!("  [{}] {} (AAGUID: {})", d.index, d.name, d.aaguid_hex))
        .collect::<Vec<_>>()
        .join("\n")
}

/// Try to open a device by numeric index
fn open_device_by_index(list: &TransportList, idx: usize) -> Result<Transport> {
    if idx >= list.len() {
        return Err(passless_core::Error::Other(format!(
            "Device index {} out of range. {} device(s) available (0-{})",
            idx,
            list.len(),
            list.len() - 1
        )));
    }

    let mut transport = list.get(idx).ok_or_else(|| {
        passless_core::Error::Other(format!("Failed to get device at index {}", idx))
    })?;

    transport.open().map_err(|e| {
        passless_core::Error::Other(format!("Failed to open device {}: {:?}", idx, e))
    })?;

    Ok(transport)
}

/// Try to open a device by name or AAGUID substring match
fn open_device_by_selector(list: &TransportList, selector: &str) -> Result<Transport> {
    let sel_lower = selector.to_lowercase();
    let mut matches: Vec<(DeviceInfo, Transport)> = Vec::new();
    let mut non_matches: Vec<DeviceInfo> = Vec::new();

    for i in 0..list.len() {
        let Some(mut transport) = list.get(i) else {
            continue;
        };

        let (aaguid_hex, versions) = if transport.open().is_ok() {
            query_device_info(&mut transport)
        } else {
            non_matches.push(DeviceInfo {
                index: i,
                name: "Unavailable".to_string(),
                aaguid_hex: "unavailable".to_string(),
                versions: "FIDO2".to_string(),
            });
            continue;
        };

        let name = aaguid_hex_to_name(&aaguid_hex);
        let device_info = DeviceInfo {
            index: i,
            name,
            aaguid_hex,
            versions,
        };

        let is_match = device_info.name.to_lowercase().contains(&sel_lower)
            || device_info.aaguid_hex.to_lowercase().contains(&sel_lower);

        if is_match {
            matches.push((device_info, transport));
        } else {
            transport.close();
            non_matches.push(device_info);
        }
    }

    match matches.len() {
        0 => {
            let all_devices: Vec<DeviceInfo> = non_matches
                .into_iter()
                .chain(matches.into_iter().map(|(d, _)| d))
                .collect();
            Err(passless_core::Error::Other(format!(
                "No device found matching '{}'\n\n\
                 Available devices:\n{}\n\n\
                 Use 'passless client devices' to list all devices.",
                selector,
                format_device_list(&all_devices)
            )))
        }
        1 => {
            let (_device_info, transport) = matches.into_iter().next().ok_or_else(|| {
                passless_core::Error::Other("No device found after filtering".to_string())
            })?;
            Ok(transport)
        }
        _ => {
            let matched_devices: Vec<DeviceInfo> = matches
                .into_iter()
                .map(|(d, mut t)| {
                    t.close();
                    d
                })
                .collect();

            Err(passless_core::Error::Other(format!(
                "Ambiguous device selector '{}' matches {} devices:\n{}\n\n\
                 Please use a more specific selector or numeric index.",
                selector,
                matched_devices.len(),
                format_device_list(&matched_devices)
            )))
        }
    }
}

/// Try to open the first available device (prefers newest/highest index)
fn open_default_device(list: &TransportList) -> Result<Transport> {
    let mut last_error = None;

    for i in (0..list.len()).rev() {
        if let Some(mut transport) = list.get(i) {
            match transport.open() {
                Ok(_) => return Ok(transport),
                Err(e) => {
                    last_error = Some(format!("Device {} failed to open: {:?}", i, e));
                }
            }
        }
    }

    Err(passless_core::Error::Other(format!(
        "No accessible FIDO2 authenticators found.\n\
         Found {} device(s) but none could be opened.\n\n\
         Try specifying a device explicitly: --device <INDEX>\n\
         List available devices: passless client devices\n\n\
         Last error: {}",
        list.len(),
        last_error.unwrap_or_else(|| "No devices could be opened".to_string())
    )))
}

/// Open a FIDO2 authenticator by index, name, or AAGUID selector
fn open_authenticator(selector: Option<&str>) -> Result<Transport> {
    let list = TransportList::enumerate().map_err(|e| {
        passless_core::Error::Other(format!("Failed to enumerate authenticators: {:?}", e))
    })?;

    if list.is_empty() {
        return Err(passless_core::Error::Other(
            "No FIDO2 authenticators found.".to_string(),
        ));
    }

    match selector {
        None => open_default_device(&list),
        Some(sel) => {
            if let Ok(idx) = sel.parse::<usize>() {
                open_device_by_index(&list, idx)
            } else {
                open_device_by_selector(&list, sel)
            }
        }
    }
}

/// Authenticate for credential management operations
///
/// Tries the following authentication methods in order:
/// 1. UV token (built-in user verification)
/// 2. PIN token (if PIN is set on the authenticator)
///
/// Returns an error if neither method is available/supported.
fn authenticate_for_credential_management(
    transport: &mut Transport,
    output: OutputFormat,
) -> Result<soft_fido2::request::PinUvAuth> {
    if output == OutputFormat::Plain {
        println!("Attempting user verification...");
    }

    match Client::get_uv_token_for_credential_management(transport, PinProtocol::V2) {
        Ok(token) => {
            if output == OutputFormat::Plain {
                println!("User verification successful\n");
            }
            Ok(token)
        }
        Err(uv_error) => {
            if output == OutputFormat::Plain {
                println!("  UV not available: {:?}", uv_error);
            }

            fallback_to_pin_auth(transport, output, uv_error)
        }
    }
}

/// Fallback to PIN authentication when UV fails
fn fallback_to_pin_auth(
    transport: &mut Transport,
    output: OutputFormat,
    uv_error: soft_fido2::Error,
) -> Result<soft_fido2::request::PinUvAuth> {
    if output == OutputFormat::Plain {
        println!("  Checking if PIN authentication is available...");
    }

    let info_response = Client::authenticator_get_info(transport).map_err(|e| {
        passless_core::Error::Other(format!("Failed to get authenticator info: {:?}", e))
    })?;

    let info_value: soft_fido2_ctap::cbor::Value = soft_fido2_ctap::cbor::decode(&info_response)
        .map_err(|e| {
            passless_core::Error::Other(format!("Failed to decode info response: {:?}", e))
        })?;

    let info = parse_authenticator_info(&info_value)?;

    let has_cred_mgmt = info
        .options
        .as_ref()
        .and_then(|opts| opts.get("credMgmt").or(opts.get("credentialMgmtPreview")))
        .copied()
        .unwrap_or(false);

    if !has_cred_mgmt {
        return Err(passless_core::Error::Other(
            "This authenticator does not support credential management".to_string(),
        ));
    }

    let client_pin_option = info
        .options
        .as_ref()
        .and_then(|opts| opts.get("clientPin"))
        .copied();

    match client_pin_option {
        Some(true) => {
            if output == OutputFormat::Plain {
                println!("  PIN is set on this authenticator");
                println!("  Falling back to PIN authentication...\n");
                println!("Enter PIN: ");
            }

            let pin = read_password()
                .map_err(|e| passless_core::Error::Other(format!("Failed to read PIN: {:?}", e)))?;

            if pin.is_empty() {
                return Err(passless_core::Error::Other(
                    "PIN is required for credential management on this authenticator".to_string(),
                ));
            }

            if output == OutputFormat::Plain {
                println!();
            }

            Client::get_pin_token_for_credential_management(transport, &pin, PinProtocol::V2)
                .map_err(|e| {
                    passless_core::Error::Other(format!(
                        "PIN authentication failed: {:?}. UV was also unavailable: {:?}",
                        e, uv_error
                    ))
                })
        }
        Some(false) => Err(passless_core::Error::Other(format!(
            "Credential management requires authentication but:\n\
                 - UV is unavailable: {:?}\n\
                 - No PIN is set on this authenticator\n\
                 \n\
                 Please set a PIN first using: passless client pin set <PIN>",
            uv_error
        ))),
        None => Err(passless_core::Error::Other(format!(
            "Credential management requires authentication but:\n\
                 - UV is unavailable: {:?}\n\
                 - This authenticator does not support PIN\n\
                 \n\
                 This authenticator may require built-in UV (biometric/fingerprint) \
                 which is currently blocked or unavailable.",
            uv_error
        ))),
    }
}

/// List all available FIDO2 authenticators
pub fn devices(output: OutputFormat) -> Result<()> {
    let list = TransportList::enumerate().map_err(|e| {
        passless_core::Error::Other(format!("Failed to enumerate authenticators: {:?}", e))
    })?;

    if list.is_empty() {
        return output_no_devices(output);
    }

    let devices = enumerate_device_info(&list);

    match output {
        OutputFormat::Plain => output_devices_plain(&devices),
        OutputFormat::Json => output_devices_json(&devices, list.len()),
    }

    Ok(())
}

/// Output message when no devices are found
fn output_no_devices(output: OutputFormat) -> Result<()> {
    match output {
        OutputFormat::Plain => {
            println!("No FIDO2 authenticators found.\n");
        }
        OutputFormat::Json => {
            #[derive(Serialize)]
            struct DevicesOutput {
                count: usize,
                devices: Vec<String>,
            }
            let result = DevicesOutput {
                count: 0,
                devices: vec![],
            };
            println!("{}", serde_json::to_string_pretty(&result).unwrap());
        }
    }
    Ok(())
}

/// Output device list in plain text format
fn output_devices_plain(devices: &[DeviceInfo]) {
    println!("Found {} FIDO2 authenticator(s):\n", devices.len());
    for device in devices {
        println!("  [{}] {} ({})", device.index, device.name, device.versions);
        if device.aaguid_hex != "unknown" && device.aaguid_hex != "unavailable" {
            println!("      AAGUID: {}", device.aaguid_hex);
        }
    }
    println!("\nUse --device <index> to select a specific device.");
}

/// Output device list in JSON format
fn output_devices_json(devices: &[DeviceInfo], total_count: usize) {
    #[derive(Serialize)]
    struct JsonDeviceInfo {
        index: usize,
        name: String,
        aaguid: String,
        versions: String,
    }

    #[derive(Serialize)]
    struct DevicesOutput {
        count: usize,
        devices: Vec<JsonDeviceInfo>,
    }

    let json_devices: Vec<JsonDeviceInfo> = devices
        .iter()
        .map(|d| JsonDeviceInfo {
            index: d.index,
            name: d.name.clone(),
            aaguid: d.aaguid_hex.clone(),
            versions: d.versions.clone(),
        })
        .collect();

    let result = DevicesOutput {
        count: total_count,
        devices: json_devices,
    };
    println!("{}", serde_json::to_string_pretty(&result).unwrap());
}

/// Get authenticator information
pub fn info(output: OutputFormat, device: Option<&str>) -> Result<()> {
    let mut transport = open_authenticator(device)?;

    if output == OutputFormat::Plain {
        println!("Querying authenticator information...\n");
    }

    let response = Client::authenticator_get_info(&mut transport)
        .map_err(|e| passless_core::Error::Other(format!("Failed to get info: {:?}", e)))?;

    // Parse CBOR response
    let info_value: soft_fido2_ctap::cbor::Value = soft_fido2_ctap::cbor::decode(&response)
        .map_err(|e| passless_core::Error::Other(format!("Failed to decode response: {:?}", e)))?;

    let info = parse_authenticator_info(&info_value)?;

    match output {
        OutputFormat::Plain => print_authenticator_info(&info),
        OutputFormat::Json => {
            let json = serde_json::to_string_pretty(&info).map_err(|e| {
                passless_core::Error::Other(format!("Failed to serialize to JSON: {:?}", e))
            })?;
            println!("{}", json);
        }
    }

    transport.close();
    Ok(())
}

/// Reset the authenticator
pub fn reset(output: OutputFormat, device: Option<&str>, confirm_count: u8) -> Result<()> {
    if confirm_count != 2 {
        return Err(passless_core::Error::Other(
            "Reset requires --yes-i-really-want-to-reset-my-device twice for safety".to_string(),
        ));
    }

    let mut transport = open_authenticator(device)?;

    if output == OutputFormat::Plain {
        println!("\nSending reset command...");
        println!("Please confirm user presence on the authenticator.");
    }

    // Send reset command (0x07) with no parameters
    let response = transport
        .send_ctap_command(0x07, &[], 30000)
        .map_err(|e| passless_core::Error::Other(format!("Reset failed: {:?}", e)))?;

    // Check status
    if !response.is_empty() && response[0] != 0x00 {
        return Err(passless_core::Error::Other(format!(
            "Reset failed with status: 0x{:02x}",
            response[0]
        )));
    }

    match output {
        OutputFormat::Plain => println!("Authenticator reset successfully!"),
        OutputFormat::Json => {
            #[derive(Serialize)]
            struct ResetResult {
                success: bool,
                message: String,
            }
            let result = ResetResult {
                success: true,
                message: "Authenticator reset successfully".to_string(),
            };
            println!("{}", serde_json::to_string_pretty(&result).unwrap());
        }
    }

    transport.close();
    Ok(())
}

/// List all credentials on the authenticator, optionally filtered by RP ID
pub fn list(output: OutputFormat, device: Option<&str>, rp_id_filter: Option<&str>) -> Result<()> {
    let mut transport = open_authenticator(device)?;

    if output == OutputFormat::Plain {
        if let Some(filter) = rp_id_filter {
            println!("Listing credentials for RP: {}...\n", filter);
        } else {
            println!("Listing all credentials on authenticator...\n");
        }
    }

    // Try to authenticate (may not be needed for passless)
    let pin_uv_auth = match authenticate_for_credential_management(&mut transport, output) {
        Ok(auth) => Some(auth),
        Err(_) => {
            if output == OutputFormat::Plain {
                println!("Proceeding without explicit authentication...\n");
            }
            None
        }
    };

    // Get metadata (optional, only for plain output)
    if output == OutputFormat::Plain {
        println!("Credential Storage Metadata");
        println!("===========================");
        let request = CredentialManagementRequest::new(pin_uv_auth.clone());
        match Client::get_credentials_metadata(&mut transport, request) {
            Ok(metadata) => {
                println!(
                    "Existing discoverable credentials: {}",
                    metadata.existing_resident_credentials_count
                );
                println!(
                    "Max remaining credentials:         {}",
                    metadata.max_possible_remaining_resident_credentials_count
                );
                println!();
            }
            Err(e) => {
                println!("Could not get metadata: {:?}", e);
                println!("Continuing with enumeration...\n");
            }
        }
    }

    // Enumerate RPs
    if output == OutputFormat::Plain {
        println!("Relying Parties");
        println!("===============");
    }

    let request = CredentialManagementRequest::new(pin_uv_auth.clone());
    let rps = Client::enumerate_rps(&mut transport, request).map_err(|e| {
        passless_core::Error::Other(format!("Failed to enumerate relying parties: {:?}", e))
    })?;

    if rps.is_empty() {
        match output {
            OutputFormat::Plain => println!("No credentials found on this authenticator."),
            OutputFormat::Json => {
                let empty_output = ListOutput {
                    filter: rp_id_filter.map(|s| s.to_string()),
                    total_rps: 0,
                    filtered_rps: None,
                    total_credentials: 0,
                    relying_parties: vec![],
                };
                println!("{}", serde_json::to_string_pretty(&empty_output).unwrap());
            }
        }
        transport.close();
        return Ok(());
    }

    // Apply RP ID filter if specified
    let filtered_rps: Vec<_> = if let Some(filter) = rp_id_filter {
        rps.iter().filter(|rp| rp.id.contains(filter)).collect()
    } else {
        rps.iter().collect()
    };

    if filtered_rps.is_empty() {
        match output {
            OutputFormat::Plain => {
                if let Some(filter) = rp_id_filter {
                    println!("No credentials found for RP ID matching: {}", filter);
                } else {
                    println!("No credentials found on this authenticator.");
                }
            }
            OutputFormat::Json => {
                let empty_output = ListOutput {
                    filter: rp_id_filter.map(|s| s.to_string()),
                    total_rps: rps.len(),
                    filtered_rps: Some(0),
                    total_credentials: 0,
                    relying_parties: vec![],
                };
                println!("{}", serde_json::to_string_pretty(&empty_output).unwrap());
            }
        }
        transport.close();
        return Ok(());
    }

    if output == OutputFormat::Plain {
        if rp_id_filter.is_some() {
            println!(
                "Found {} matching relying part{} (filtered from {} total)\n",
                filtered_rps.len(),
                if filtered_rps.len() == 1 { "y" } else { "ies" },
                rps.len()
            );
        } else {
            println!(
                "Found {} relying part{}\n",
                filtered_rps.len(),
                if filtered_rps.len() == 1 { "y" } else { "ies" }
            );
        }
    }

    let mut total_credentials = 0;
    let mut rp_outputs = Vec::new();

    // For each RP, enumerate credentials
    for (rp_idx, rp) in filtered_rps.iter().enumerate() {
        if output == OutputFormat::Plain {
            println!("{}. Relying Party: {}", rp_idx + 1, rp.id);
            if let Some(name) = &rp.name {
                println!("   Name: {}", name);
            }
            println!("   RP ID Hash: {}", hex::encode(rp.rp_id_hash));
            println!();
        }

        let request = EnumerateCredentialsRequest::new(pin_uv_auth.clone(), rp.rp_id_hash);
        match Client::enumerate_credentials(&mut transport, request) {
            Ok(credentials) => {
                if output == OutputFormat::Plain {
                    if credentials.is_empty() {
                        println!("   No credentials found for this RP");
                    } else {
                        for (i, cred) in credentials.iter().enumerate() {
                            println!("   Credential {}:", i + 1);
                            println!("     User ID:       {}", hex::encode(&cred.user.id));
                            if let Some(name) = &cred.user.name {
                                println!("     User Name:     {}", name);
                            }
                            if let Some(display_name) = &cred.user.display_name {
                                println!("     Display Name:  {}", display_name);
                            }
                            // Show full credential ID for easy copy-paste
                            println!(
                                "     Credential ID: {}",
                                hex::encode(&cred.credential_id.id)
                            );

                            if let Some(cred_protect) = cred.cred_protect {
                                let protection_level = match cred_protect {
                                    1 => "UV Optional",
                                    2 => "UV Optional with Credential ID List",
                                    3 => "UV Required",
                                    _ => "Unknown",
                                };
                                println!(
                                    "     Protection:    {} ({})",
                                    protection_level, cred_protect
                                );
                            }

                            println!();
                        }
                        total_credentials += credentials.len();
                        println!("   Total credentials for this RP: {}", credentials.len());
                    }
                } else {
                    // JSON output: collect credentials
                    let cred_outputs: Vec<CredentialOutput> = credentials
                        .iter()
                        .map(|cred| CredentialOutput {
                            user_id: cred.user.id.clone(),
                            user_name: cred.user.name.clone(),
                            display_name: cred.user.display_name.clone(),
                            credential_id: cred.credential_id.id.clone(),
                            cred_protect: cred.cred_protect,
                        })
                        .collect();

                    total_credentials += cred_outputs.len();

                    rp_outputs.push(RpOutput {
                        id: rp.id.clone(),
                        name: rp.name.clone(),
                        rp_id_hash: rp.rp_id_hash.to_vec(),
                        credentials: cred_outputs,
                    });
                }
            }
            Err(e) => {
                if output == OutputFormat::Plain {
                    println!("   Failed to enumerate credentials: {:?}", e);
                }
            }
        }

        if output == OutputFormat::Plain {
            println!();
        }
    }

    match output {
        OutputFormat::Plain => {
            println!("Summary:");
            println!("========");
            if rp_id_filter.is_some() {
                println!(
                    "Total relying parties (filtered): {} (of {} total)",
                    filtered_rps.len(),
                    rps.len()
                );
            } else {
                println!("Total relying parties: {}", filtered_rps.len());
            }
            println!("Total credentials: {}", total_credentials);
        }
        OutputFormat::Json => {
            let list_output = ListOutput {
                filter: rp_id_filter.map(|s| s.to_string()),
                total_rps: rps.len(),
                filtered_rps: if rp_id_filter.is_some() {
                    Some(filtered_rps.len())
                } else {
                    None
                },
                total_credentials,
                relying_parties: rp_outputs,
            };
            println!("{}", serde_json::to_string_pretty(&list_output).unwrap());
        }
    }

    transport.close();
    Ok(())
}

/// Show detailed information about a specific credential
pub fn show(output: OutputFormat, device: Option<&str>, credential_id_hex: &str) -> Result<()> {
    if output == OutputFormat::Plain {
        println!("Showing credential: {}\n", credential_id_hex);
    }

    let mut transport = open_authenticator(device)?;

    // Try to authenticate
    let pin_uv_auth = match authenticate_for_credential_management(&mut transport, output) {
        Ok(auth) => Some(auth),
        Err(_) => {
            if output == OutputFormat::Plain {
                println!("Proceeding without explicit authentication...\n");
            }
            None
        }
    };

    // Decode credential ID
    let credential_id = hex::decode(credential_id_hex)
        .map_err(|e| passless_core::Error::Other(format!("Invalid credential ID hex: {:?}", e)))?;

    // Enumerate RPs to find the credential
    let request = CredentialManagementRequest::new(pin_uv_auth.clone());
    let rps = Client::enumerate_rps(&mut transport, request).map_err(|e| {
        passless_core::Error::Other(format!("Failed to enumerate relying parties: {:?}", e))
    })?;

    let mut found_credential = None;
    let mut found_rp = None;

    for rp in rps {
        let enum_request = EnumerateCredentialsRequest::new(pin_uv_auth.clone(), rp.rp_id_hash);
        if let Ok(credentials) = Client::enumerate_credentials(&mut transport, enum_request) {
            for cred in credentials {
                if cred.credential_id.id == credential_id {
                    found_credential = Some(cred);
                    found_rp = Some(rp);
                    break;
                }
            }
            if found_credential.is_some() {
                break;
            }
        }
    }

    let credential = found_credential
        .ok_or_else(|| passless_core::Error::Other("Credential not found".to_string()))?;

    let rp = found_rp.unwrap();

    match output {
        OutputFormat::Plain => {
            println!("Credential Details");
            println!("==================\n");

            println!("Relying Party:");
            println!("  ID:           {}", rp.id);
            if let Some(name) = &rp.name {
                println!("  Name:         {}", name);
            }
            println!("  RP ID Hash:   {}", hex::encode(rp.rp_id_hash));
            println!();

            println!("User:");
            println!("  User ID:      {}", hex::encode(&credential.user.id));
            if let Some(name) = &credential.user.name {
                println!("  User Name:    {}", name);
            } else {
                println!("  User Name:    (not set)");
            }
            if let Some(display_name) = &credential.user.display_name {
                println!("  Display Name: {}", display_name);
            } else {
                println!("  Display Name: (not set)");
            }
            println!();

            println!("Credential:");
            println!(
                "  ID:           {}",
                hex::encode(&credential.credential_id.id)
            );
            println!("  Type:         {:?}", credential.credential_id.r#type);

            if let Some(cred_protect) = credential.cred_protect {
                let protection_level = match cred_protect {
                    1 => "UV Optional",
                    2 => "UV Optional with Credential ID List",
                    3 => "UV Required",
                    _ => "Unknown",
                };
                println!(
                    "  Protection:   {} (level {})",
                    protection_level, cred_protect
                );
            }

            if let Some(large_blob_key) = &credential.large_blob_key {
                println!("  Large Blob:   {} bytes", large_blob_key.len());
            }
        }
        OutputFormat::Json => {
            #[derive(Serialize)]
            struct ShowOutput {
                relying_party: RpInfo,
                user: UserInfo,
                credential: CredInfo,
            }

            #[derive(Serialize)]
            struct RpInfo {
                id: String,
                name: Option<String>,
                rp_id_hash: Vec<u8>,
            }

            #[derive(Serialize)]
            struct UserInfo {
                id: Vec<u8>,
                name: Option<String>,
                display_name: Option<String>,
            }

            #[derive(Serialize)]
            struct CredInfo {
                id: Vec<u8>,
                #[serde(rename = "type")]
                credential_type: String,
                cred_protect: Option<u8>,
                large_blob_key: Option<Vec<u8>>,
            }

            let output = ShowOutput {
                relying_party: RpInfo {
                    id: rp.id,
                    name: rp.name,
                    rp_id_hash: rp.rp_id_hash.to_vec(),
                },
                user: UserInfo {
                    id: credential.user.id,
                    name: credential.user.name,
                    display_name: credential.user.display_name,
                },
                credential: CredInfo {
                    id: credential.credential_id.id,
                    credential_type: format!("{:?}", credential.credential_id.r#type),
                    cred_protect: credential.cred_protect,
                    large_blob_key: credential.large_blob_key,
                },
            };
            println!("{}", serde_json::to_string_pretty(&output).unwrap());
        }
    }

    transport.close();
    Ok(())
}

/// Delete a credential by ID
pub fn delete(output: OutputFormat, device: Option<&str>, credential_id_hex: &str) -> Result<()> {
    if output == OutputFormat::Plain {
        println!("Deleting credential: {}\n", credential_id_hex);
    }

    let mut transport = open_authenticator(device)?;

    // Try to authenticate (may not be needed for passless)
    let pin_uv_auth = match authenticate_for_credential_management(&mut transport, output) {
        Ok(auth) => Some(auth),
        Err(_) => {
            if output == OutputFormat::Plain {
                println!("Proceeding without explicit authentication...\n");
            }
            None
        }
    };

    // Decode credential ID
    let credential_id = hex::decode(credential_id_hex)
        .map_err(|e| passless_core::Error::Other(format!("Invalid credential ID hex: {:?}", e)))?;

    if output == OutputFormat::Plain {
        println!("Deleting credential...");
    }

    let request = DeleteCredentialRequest::new(pin_uv_auth, credential_id);
    Client::delete_credential(&mut transport, request).map_err(|e| {
        passless_core::Error::Other(format!("Failed to delete credential: {:?}", e))
    })?;

    match output {
        OutputFormat::Plain => println!("Credential deleted successfully!"),
        OutputFormat::Json => {
            #[derive(Serialize)]
            struct DeleteResult {
                success: bool,
                credential_id: String,
            }
            let result = DeleteResult {
                success: true,
                credential_id: credential_id_hex.to_string(),
            };
            println!("{}", serde_json::to_string_pretty(&result).unwrap());
        }
    }

    transport.close();
    Ok(())
}

/// Rename a credential (update user name and/or display name)
pub fn rename(
    output: OutputFormat,
    device: Option<&str>,
    credential_id_hex: &str,
    user_name: Option<&str>,
    display_name: Option<&str>,
) -> Result<()> {
    // Validate that at least one field is provided
    if user_name.is_none() && display_name.is_none() {
        return Err(passless_core::Error::Other(
            "At least one of --user-name or --display-name must be provided".to_string(),
        ));
    }

    if output == OutputFormat::Plain {
        println!("Renaming credential: {}\n", credential_id_hex);
    }

    let mut transport = open_authenticator(device)?;

    // Authenticate for credential management
    let pin_uv_auth = match authenticate_for_credential_management(&mut transport, output) {
        Ok(auth) => Some(auth),
        Err(_) => {
            if output == OutputFormat::Plain {
                println!("Proceeding without explicit authentication...\n");
            }
            None
        }
    };

    // Decode credential ID
    let credential_id = hex::decode(credential_id_hex)
        .map_err(|e| passless_core::Error::Other(format!("Invalid credential ID hex: {:?}", e)))?;

    // First, we need to get the current credential to retrieve the user.id
    // We'll enumerate credentials and find the matching one
    if output == OutputFormat::Plain {
        println!("Fetching credential information...");
    }

    // Get authenticator info to check credential management support
    let info_response = Client::authenticator_get_info(&mut transport).map_err(|e| {
        passless_core::Error::Other(format!("Failed to get authenticator info: {:?}", e))
    })?;

    let info_value: soft_fido2_ctap::cbor::Value = soft_fido2_ctap::cbor::decode(&info_response)
        .map_err(|e| {
            passless_core::Error::Other(format!("Failed to decode info response: {:?}", e))
        })?;

    let info = parse_authenticator_info(&info_value)?;

    if !info
        .options
        .as_ref()
        .and_then(|opts| opts.get("credMgmt").or(opts.get("credentialMgmtPreview")))
        .copied()
        .unwrap_or(false)
    {
        return Err(passless_core::Error::Other(
            "Authenticator does not support credential management".to_string(),
        ));
    }

    // Enumerate all RPs to find the credential
    let mgmt_request = CredentialManagementRequest::new(pin_uv_auth.clone());
    let rps = Client::enumerate_rps(&mut transport, mgmt_request)
        .map_err(|e| passless_core::Error::Other(format!("Failed to enumerate RPs: {:?}", e)))?;

    let mut found_credential = None;

    for rp in rps {
        let enum_request = EnumerateCredentialsRequest::new(pin_uv_auth.clone(), rp.rp_id_hash);
        if let Ok(credentials) = Client::enumerate_credentials(&mut transport, enum_request) {
            for cred in credentials {
                if cred.credential_id.id == credential_id {
                    found_credential = Some(cred);
                    break;
                }
            }
            if found_credential.is_some() {
                break;
            }
        }
    }

    let credential = found_credential
        .ok_or_else(|| passless_core::Error::Other("Credential not found".to_string()))?;

    // Build updated user with the same user.id but potentially new name/display_name
    // Special handling: "-" means delete/clear the field (kubectl-style syntax)
    let updated_user = soft_fido2_ctap::User {
        id: credential.user.id.clone(),
        name: match user_name {
            Some("-") => None,                    // Clear the field
            Some(val) => Some(val.to_string()),   // Set new value
            None => credential.user.name.clone(), // Keep existing value
        },
        display_name: match display_name {
            Some("-") => None,                            // Clear the field
            Some(val) => Some(val.to_string()),           // Set new value
            None => credential.user.display_name.clone(), // Keep existing value
        },
    };

    if output == OutputFormat::Plain {
        println!("Updating user information...");
    }

    // Send the update request
    let update_request = UpdateUserRequest::new(pin_uv_auth, credential_id, updated_user.clone());
    Client::update_user_information(&mut transport, update_request).map_err(|e| {
        passless_core::Error::Other(format!("Failed to update user information: {:?}", e))
    })?;

    match output {
        OutputFormat::Plain => {
            println!("Credential renamed successfully!");

            // Show what was updated
            match user_name {
                Some("-") => println!("  User name: (cleared)"),
                Some(_) => {
                    if let Some(name) = &updated_user.name {
                        println!("  User name: {}", name);
                    }
                }
                None => {} // Not modified
            }

            match display_name {
                Some("-") => println!("  Display name: (cleared)"),
                Some(_) => {
                    if let Some(display) = &updated_user.display_name {
                        println!("  Display name: {}", display);
                    }
                }
                None => {} // Not modified
            }
        }
        OutputFormat::Json => {
            #[derive(Serialize)]
            struct RenameResult {
                success: bool,
                credential_id: String,
                user_name: Option<String>,
                display_name: Option<String>,
            }
            let result = RenameResult {
                success: true,
                credential_id: credential_id_hex.to_string(),
                user_name: updated_user.name,
                display_name: updated_user.display_name,
            };
            println!("{}", serde_json::to_string_pretty(&result).unwrap());
        }
    }

    transport.close();
    Ok(())
}

/// Set PIN on authenticator
pub fn pin_set(output: OutputFormat, device: Option<&str>, pin: &str) -> Result<()> {
    // Validate PIN length (CTAP2 spec: 4-63 UTF-8 bytes)
    if pin.len() < 4 {
        return Err(passless_core::Error::Other(
            "PIN must be at least 4 characters".to_string(),
        ));
    }
    if pin.len() > 63 {
        return Err(passless_core::Error::Other(
            "PIN must be at most 63 bytes in UTF-8".to_string(),
        ));
    }

    let mut transport = open_authenticator(device)?;

    if output == OutputFormat::Plain {
        println!("Setting PIN on authenticator...\n");
    }

    // Get authenticator info to check PIN capability
    let info_response = Client::authenticator_get_info(&mut transport).map_err(|e| {
        passless_core::Error::Other(format!("Failed to get authenticator info: {:?}", e))
    })?;

    let info_value: soft_fido2_ctap::cbor::Value = soft_fido2_ctap::cbor::decode(&info_response)
        .map_err(|e| passless_core::Error::Other(format!("Failed to decode info: {:?}", e)))?;

    let info = parse_authenticator_info(&info_value)?;

    // Check if PIN is supported
    // According to CTAP spec:
    // - clientPin: true = PIN capability AND PIN is set
    // - clientPin: false = PIN capability but PIN is NOT set
    // - clientPin absent = no PIN capability
    // So we check for key presence, not the value
    let options = info.options.as_ref();
    let client_pin_supported = options
        .map(|opts| opts.contains_key("clientPin"))
        .unwrap_or(false);

    if !client_pin_supported {
        return Err(passless_core::Error::Other(
            "Authenticator does not support PIN (clientPin not available)".to_string(),
        ));
    }

    // Use soft-fido2 PIN protocol implementation
    let mut encapsulation =
        soft_fido2::PinUvAuthEncapsulation::new(&mut transport, soft_fido2::PinProtocol::V2)
            .map_err(|e| {
                passless_core::Error::Other(format!("Failed to initialize PIN protocol: {:?}", e))
            })?;

    encapsulation
        .set_pin(&mut transport, pin)
        .map_err(|e| passless_core::Error::Other(format!("Failed to set PIN: {:?}", e)))?;

    match output {
        OutputFormat::Plain => {
            println!("PIN set successfully!");
        }
        OutputFormat::Json => {
            #[derive(Serialize)]
            struct PinSetResult {
                success: bool,
                message: String,
            }
            let result = PinSetResult {
                success: true,
                message: "PIN set successfully".to_string(),
            };
            println!("{}", serde_json::to_string_pretty(&result).unwrap());
        }
    }

    transport.close();
    Ok(())
}

/// Change PIN on authenticator
pub fn pin_change(
    output: OutputFormat,
    device: Option<&str>,
    old_pin: &str,
    new_pin: &str,
) -> Result<()> {
    // Validate inputs
    if old_pin.is_empty() {
        return Err(passless_core::Error::Other(
            "Current PIN is required".to_string(),
        ));
    }
    if new_pin.len() < 4 {
        return Err(passless_core::Error::Other(
            "New PIN must be at least 4 characters".to_string(),
        ));
    }
    if new_pin.len() > 63 {
        return Err(passless_core::Error::Other(
            "New PIN must be at most 63 bytes in UTF-8".to_string(),
        ));
    }

    let mut transport = open_authenticator(device)?;

    if output == OutputFormat::Plain {
        println!("Changing PIN on authenticator...\n");
    }

    // Get authenticator info to verify PIN is set
    let info_response = Client::authenticator_get_info(&mut transport).map_err(|e| {
        passless_core::Error::Other(format!("Failed to get authenticator info: {:?}", e))
    })?;

    let info_value: soft_fido2_ctap::cbor::Value = soft_fido2_ctap::cbor::decode(&info_response)
        .map_err(|e| passless_core::Error::Other(format!("Failed to decode info: {:?}", e)))?;

    let info = parse_authenticator_info(&info_value)?;

    // Check if PIN is set
    let options = info.options.as_ref();
    let client_pin_set = options
        .and_then(|opts| opts.get("clientPin"))
        .copied()
        .unwrap_or(false);

    if !client_pin_set {
        return Err(passless_core::Error::Other(
            "No PIN is currently set on this authenticator. Use 'pin set' instead.".to_string(),
        ));
    }

    // Use soft-fido2 PIN protocol implementation
    let mut encapsulation =
        soft_fido2::PinUvAuthEncapsulation::new(&mut transport, soft_fido2::PinProtocol::V2)
            .map_err(|e| {
                passless_core::Error::Other(format!("Failed to initialize PIN protocol: {:?}", e))
            })?;

    encapsulation
        .change_pin(&mut transport, old_pin, new_pin)
        .map_err(|e| passless_core::Error::Other(format!("Failed to change PIN: {:?}", e)))?;

    match output {
        OutputFormat::Plain => {
            println!("PIN changed successfully!");
        }
        OutputFormat::Json => {
            #[derive(Serialize)]
            struct PinChangeResult {
                success: bool,
                message: String,
            }
            let result = PinChangeResult {
                success: true,
                message: "PIN changed successfully".to_string(),
            };
            println!("{}", serde_json::to_string_pretty(&result).unwrap());
        }
    }

    transport.close();
    Ok(())
}

#[derive(Debug, Default, Serialize)]
struct AuthenticatorInfo {
    #[serde(skip_serializing_if = "Option::is_none")]
    versions: Option<Vec<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    extensions: Option<Vec<String>>,
    #[serde(
        skip_serializing_if = "Option::is_none",
        serialize_with = "serialize_hex_option"
    )]
    aaguid: Option<Vec<u8>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    options: Option<HashMap<String, bool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    max_msg_size: Option<u32>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pin_uv_auth_protocols: Option<Vec<u8>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    max_credential_count_in_list: Option<u32>,
    #[serde(skip_serializing_if = "Option::is_none")]
    max_credential_id_length: Option<u32>,
    #[serde(skip_serializing_if = "Option::is_none")]
    transports: Option<Vec<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    remaining_discoverable_credentials: Option<u32>,
}

fn serialize_hex_option<S>(
    data: &Option<Vec<u8>>,
    serializer: S,
) -> std::result::Result<S::Ok, S::Error>
where
    S: serde::Serializer,
{
    match data {
        Some(bytes) => serializer.serialize_str(&hex::encode(bytes)),
        None => serializer.serialize_none(),
    }
}

fn parse_authenticator_info(value: &soft_fido2_ctap::cbor::Value) -> Result<AuthenticatorInfo> {
    use soft_fido2_ctap::cbor::Value;

    let map = match value {
        Value::Map(m) => m,
        _ => return Err(passless_core::Error::Other("Expected CBOR map".to_string())),
    };

    let mut info = AuthenticatorInfo::default();

    for (key, val) in map {
        let key_int = match key {
            Value::Integer(i) => *i as u32,
            _ => continue,
        };

        match key_int {
            1 => {
                // versions
                if let Value::Array(arr) = val {
                    info.versions = Some(
                        arr.iter()
                            .filter_map(|v| match v {
                                Value::Text(s) => Some(s.clone()),
                                _ => None,
                            })
                            .collect(),
                    );
                }
            }
            2 => {
                // extensions
                if let Value::Array(arr) = val {
                    info.extensions = Some(
                        arr.iter()
                            .filter_map(|v| match v {
                                Value::Text(s) => Some(s.clone()),
                                _ => None,
                            })
                            .collect(),
                    );
                }
            }
            3 => {
                // aaguid
                if let Value::Bytes(b) = val {
                    info.aaguid = Some(b.clone());
                }
            }
            4 => {
                // options
                if let Value::Map(opts) = val {
                    let mut options_map = HashMap::new();
                    for (opt_key, opt_val) in opts {
                        if let (Value::Text(k), Value::Bool(v)) = (opt_key, opt_val) {
                            options_map.insert(k.clone(), *v);
                        }
                    }
                    info.options = Some(options_map);
                }
            }
            5 => {
                // maxMsgSize
                if let Value::Integer(n) = val {
                    info.max_msg_size = Some(*n as u32);
                }
            }
            6 => {
                // pinUvAuthProtocols
                if let Value::Array(arr) = val {
                    info.pin_uv_auth_protocols = Some(
                        arr.iter()
                            .filter_map(|v| match v {
                                Value::Integer(i) => Some(*i as u8),
                                _ => None,
                            })
                            .collect(),
                    );
                }
            }
            7 => {
                // maxCredentialCountInList
                if let Value::Integer(n) = val {
                    info.max_credential_count_in_list = Some(*n as u32);
                }
            }
            8 => {
                // maxCredentialIdLength
                if let Value::Integer(n) = val {
                    info.max_credential_id_length = Some(*n as u32);
                }
            }
            9 => {
                // transports
                if let Value::Array(arr) = val {
                    info.transports = Some(
                        arr.iter()
                            .filter_map(|v| match v {
                                Value::Text(s) => Some(s.clone()),
                                _ => None,
                            })
                            .collect(),
                    );
                }
            }
            0x14 => {
                // remainingDiscoverableCredentials
                if let Value::Integer(n) = val {
                    info.remaining_discoverable_credentials = Some(*n as u32);
                }
            }
            _ => {}
        }
    }

    Ok(info)
}

fn print_authenticator_info(info: &AuthenticatorInfo) {
    println!("Authenticator Information:");
    println!("==========================");

    if let Some(versions) = &info.versions {
        println!("FIDO Versions: {}", versions.join(", "));
    }

    if let Some(extensions) = &info.extensions {
        println!("Extensions: {}", extensions.join(", "));
    }

    if let Some(aaguid) = &info.aaguid {
        println!("AAGUID: {}", hex::encode(aaguid));
    }

    if let Some(options) = &info.options {
        println!("\nOptions:");
        for (key, value) in options {
            println!("  {}: {}", key, value);
        }
    }

    if let Some(max_msg_size) = info.max_msg_size {
        println!("\nMax Message Size: {} bytes", max_msg_size);
    }

    if let Some(pin_protocols) = &info.pin_uv_auth_protocols {
        println!("PIN/UV Auth Protocols: {:?}", pin_protocols);
    }

    if let Some(max_creds) = info.max_credential_count_in_list {
        println!("Max Credentials in List: {}", max_creds);
    }

    if let Some(max_cred_id_len) = info.max_credential_id_length {
        println!("Max Credential ID Length: {}", max_cred_id_len);
    }

    if let Some(transports) = &info.transports {
        println!("Transports: {}", transports.join(", "));
    }

    if let Some(remaining) = info.remaining_discoverable_credentials {
        println!("\nRemaining Discoverable Credentials: {}", remaining);
    }
}