Marlon Regenhardt
Marlon Regenhardt
- [ ] `Fido2User` needs a description As the spec only has use case specific descriptions, I suggest something like this: > Represents a user account for usage with the...
- [ ] `AssertionOptions.Create` has no description, but it's basically just a static method calling the constructor This can be changed to just be a normal constructor. Either way this...
- [ ] `AuthenticatorAssertionRawResponse` is just a DTO generated by the browser, but I think the members do deserve descriptions I can't find this in the spec, but I do...
No there's no example for signing here, AFAIK there is no direct support for signing in the lib at all. Reading that document though, it shouldn't be too hard to...
Can you maybe make a public repo with minimal code to reproduce this error? Also to debug this step a bit more I did the following: 1) Add `console.log('options:', options);`...
@TravisKool have you found a solution? Otherwise, can you try using .NET 8 and directly use the Fido2.BlazorWebAssembly project for now?
This can be solved using the [Fido2.BlazorWebassembly](https://github.com/passwordless-lib/fido2-net-lib/tree/master/Src/Fido2.BlazorWebAssembly) lib in the frontend. It's not on NuGet yet, but you can just copy the code (or copy the whole project to your...
To test a suspicion, locally build your app in release mode. This is what triggered the error for me: Building in release mode stripped the assembly of things it didn't...
As far as I can see (assuming the `jsonData` is correct there), your deserialisation looks ok there. I can check out the code later and try to see if there's...
I believe this will be fixed when either the Blazor lib is released as NuGet package, or all the libs are updated or multi-targeted to net7.0 for newer apps. The...