-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Support for OnlyKey #2
Comments
Hello, have you got OnlyKey working? I have a Feitian security key which I'd like to add support to. Any hint you could provide is highly appreciated. |
I never received an OnlyKey so I am unsure. I will look into what Feitian key will require but without one it will be hard to confirm |
@frgomes It doesn't appear that the Feitian security key supports challeneges in the same way OnlyKey and Yubikey does so you would need to use something like smart card plugins instead. |
// New fuction available in yubikey-personalization version >= 1.20.0 that allows
// selecting device VID/PID (yk_open_key_vid_pid) if Yubikey was not found
if (m_yk == nullptr) {
static const int device_pids[] = {0x60fc}; // OnlyKey PID
m_yk_void = static_cast<void*>(yk_open_key_vid_pid(0x1d50, device_pids, 1, 0));
m_onlyKey = true;
}
View thread at brush701#41
The text was updated successfully, but these errors were encountered: