-
-
Notifications
You must be signed in to change notification settings - Fork 277
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
Windows - how to develop without hardware? #204
Comments
I think you can install make with chocolatey or scoop. |
Thank you @nickray Assuming that we use the
The goal is to be able to create / store few keys and check how the whole webAuth flow works, and build /test apps that can use such flow. |
@KrishnaPG not really. The If you're writing python programs (e.g. a FIDO2 server), then yes, you can reuse this library and interact with the executable. However if you want to just make a webapp, you'd need to change your browser or your OS, to create an extension or driver that fakes a usb interface and instead sends data via udp. This is currently not possible. |
Thank you @0x0ece That makes things clear. Then I am wondering, what is the procedure for creating apps that can take advantage of the Solo keys (without really having a key or two at hand)? For example, I would really love to provide my customers the ability to use the Solo keys with our app. It is expected that the customers would have the Solo keys, but the developers (of the web/mobile app) do not have the keys at hand.
Is there some driver or simulator that can be used for this purpose? It would really really help the developers build the ecosystem around these keys. |
I find a raspberry pi zero works great. It's all of $5.00 and runs the solo application. There is already support for this in the solo codebase, since it can use /dev/hidg. Failing that, it's up to the app developer to use usb over udp to emulate the key. You need a server running, preferably on a linux machine. the usb specific calls are already replaced with "udp_send" and "udp_recv". |
Here a happy Linux user. I have been told that recent versions of Microsoft Windows have something that is called Visiting Microsoft.com got me redirected to a local branch of MSFT and did a search on Got several results, one being https://www.microsoft.com/nl-nl/p/debian/9msvkqc78pk6 it says
I would like to know if
to get you started. Please report your milage
|
The ReadMe has a section describing a case of developing for this without the hardware. Unfortunately it is not clear how to achieve it. Any information in this regard would be of great help.
For example,
The instructions in the aforesaid section says, run
make all
. Unfortunately windows / Visual studio does not come withmake
. Not sure how to build this code with Visual Studio. The comment here indicates that others have already used VS to build this. Appreciate any pointers on how it was done.In this regard, one suggestion / request is, to adapt
CMake
as the cross-platform build, if possible.keystore manager
, how to build/test such app without really having a hardware key at hand (during the development phase)?The text was updated successfully, but these errors were encountered: