Paweł Chmielowski
Paweł Chmielowski
So i did preliminary conversion to webextension (it's here: https://github.com/prefiks/u2f4moz/tree/webextension/webextension), but to make it work it will require installing external program (this is only method that would allow to communicate...
There is this: https://github.com/prefiks/u2f4moz/issues/55, but except that i never seen one in wild.
Yes that is true, there is no possibility to deliver binary program that is used for communication with u2f device in webextension, to make it work it would require downloading...
Hello, It looks like component that is talking to your u2f device is waiting for your device being inserted (or is not being able to detect it, or something like...
Thank you, that output would suggest that this program was not able to enumerate usb devices, or get stuck trying to do that. I will see if i can get...
I extended test program to manually trying list usb devices that u2f library will try to access: http://prefiks.org/u2f4moz/linux64/u2f-reg-test, as previous version it should generate log-std{out,err}.txt
Hello, I am cross compiling this on linux using mingw, but it should be possible to do that using windows mingw (i am not sure if you would be able...
This is toolchain file i am using: ``` # the name of the target operating system SET(CMAKE_SYSTEM_NAME Windows) # which compilers to use for C and C++ SET(CMAKE_C_COMPILER i686-w64-mingw32-gcc) SET(CMAKE_CXX_COMPILER...
And shell commands to have build it like that: ``` cd /c_src mkdir build-windows cd build-windows cmake -DCMAKE_TOOLCHAIN_FILE=/cmake-mingw.cmake .. make make install/strip ``` and this will give you .exe in...
Probably yes, per spec that lowlevel API is required one, and window.u2f is optional, so to be compliant it should have it, but i won't probably hurry with this.