Stéphane Épardaud
Stéphane Épardaud
OK great. I'm working on porting vertx-webauthn4j to this ATM. I'll let you know when I have questions or news :)
Hi, I'm making some progress porting `vertx-auth-webauthn` to this. I'm not happy with the existing tests in Vert.x, they're fairly light and few. But one of the test is using...
Also, does webauthn4j support https://fidoalliance.org/metadata/ ? The docs say yes, but does not give an example of how to use it. And last question (for today): what are the async...
> Certificate dates validity is checked by DefaultCertPathTrustworthinessAsyncVerifier. It calls JDK's CertPathValidator to checks the certificate chain and the certificate's validity dates. Yes, indeed. I just verified that. The current...
Thanks a lot for your explanation. That's very clear and helpful. > I have checked the code of the current Vert.x/webauthn implementation, and it does check whether the root CA...
I can't seem to be able to download the `webauthn4j-metadata-async` module, this doesn't work: ```xml com.github.webauthn4j.webauthn4j webauthn4j-metadata-async reactive-support-SNAPSHOT ``` Do you know why?
Doesn't work due to transitive dependency being on another version: ``` [ERROR] Failed to execute goal on project vertx-auth-webauthn: Could not resolve dependencies for project io.vertx:vertx-auth-webauthn:jar:5.0.0-SNAPSHOT [ERROR] dependency: com.github.webauthn4j.webauthn4j:webauthn4j-metadata:jar:reactive-support-SNAPSHOT (compile)...
Thanks, I just compiled it locally it's easier :)
BTW, I think you can merge this, it seems to be working just fine :)
I have some questions: - Do you think I should validate the attestations in the case of `direct`, `indirect` and `enterprise` or should I make validation an option unrelated to...