Multiple devices support #867
-
With libfido2 on Windows, I tried to implement multiple FIDO device support, meaning: When multiple FIDO keys are inserted into a computer, I want to flash all of them and depending which one the user touches, that device will be used for the authentication. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 11 replies
-
Hi, See Hope that helps! |
Beta Was this translation helpful? Give feedback.
-
Related question: I have a device that gets detected both as a HID device and a smartcard (I use libfido2 with PCSC support). The device is: SafeNet eToken Fusion USB C. |
Beta Was this translation helpful? Give feedback.
-
I tested the select example with interesting results, describing them here in case anybody would like to debug it further (now I'm talking only about libfido2 code, not my code).
The behavior is demonstrated the best in the attached video. fido.mp4If I select device 2, nothing happens until I also touch device 1 (or wait 30 seconds). |
Beta Was this translation helpful? Give feedback.
Hi,
See
fido_dev_get_touch_begin(3)
andfido_dev_get_touch_status(3)
andexamples/select.c
. Note that this does not work under thewindows://hello
backend.Hope that helps!