Is it possible to use libfido2 for other fido token brands except YubiKey? #755
-
I had a c++ code to assert. It use winhello to comiuncate with my fido token. It was OK. I had to use from other lib without winhello so I get libfido2 and build it. The brand of my fido token is 'thetis'. So I encountered the following. I have to change condition of is_fido on fido_hid_manifest():
Now I get this output:
My problem is when I run
Of course, I must say that the device is discovered with the following path:
At the beginning of my question is, can I use libfido2 to use another brand's token or not? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi,
You should not have to change this line. Do note that if you want to use the HID backend on Windows, you have to run your application as an administrator. Otherwise, you must use the
You should be able to use any CTAP-compliant authenticator with libfido2.
You should not have to change anything. |
Beta Was this translation helpful? Give feedback.
Hi,
You should not have to change this line.
Do note that if you want to use the HID backend on Windows, you have to run your application as an administrator. Otherwise, you must use the
winhello
backend.You should be able to use any CTAP-compliant authenticator with libfido2.
You should not have to change anything.