We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Bug report: The NK_list_devices() C-API call, while a Nitrokey FIDO2 device is plugged in, will never return and load one cpu.
NK_list_devices()
How to reproduce:
libnitrokey
nk.cc
#include <libnitrokey/NK_C_API.h> #include <iostream> using namespace std; int main() { struct NK_device_info* x = NK_list_devices(); cout << x->model << endl; cout << x->path << endl; cout << x->serial_number << endl; }
g++ nk.cc -o nk -lnitrokey -I/usr/include
./nk
Observed behavior: The executable will hang inside the NK_list_devices() call
Expected behavior: The executable should return immediately, while ignoring any other devices
Environment:
The text was updated successfully, but these errors were encountered:
I have the same issue with libnitrokey 3.6 on Debian with kernel 5.10.0-0.bpo.4-amd64.
Sorry, something went wrong.
20e5364
Successfully merging a pull request may close this issue.
Bug report: The
NK_list_devices()
C-API call, while a Nitrokey FIDO2 device is plugged in, will never return and load one cpu.How to reproduce:
libnitrokey
and its headers must be installednk.cc
) with the following content:g++ nk.cc -o nk -lnitrokey -I/usr/include
./nk
Observed behavior: The executable will hang inside the
NK_list_devices()
callExpected behavior: The executable should return immediately, while ignoring any other devices
Environment:
The text was updated successfully, but these errors were encountered: