fido2-net-lib icon indicating copy to clipboard operation
fido2-net-lib copied to clipboard

FIDO2 .NET library for FIDO2 / WebAuthn Attestation and Assertion using .NET

Results 116 fido2-net-lib issues
Sort by recently updated
recently updated
newest added

I have an error only on android: Userhandle was empty DOMString. It should either be null or have a value.

Following code, client side, throwing exception. Code @page "/" @using System.Text.Json; @using Fido2NetLib; Webauthn Recreate Issue Click me to recreate @exception @code { string jsonData = "{\"rp\":{\"id\":\"test.azurewebsites.net\",\"name\":\"WebAuthn\",\"icon\":\"https://test.azurewebsites.net/\"},\"user\":{\"name\":\"[email protected]\",\"id\":\"ZHJpdmVyQGRyaXZlci5jb20\",\"displayName\":\"[email protected]\"},\"challenge\":\"QHcEA7xeJRx3_SZV4uoFQQ\",\"pubKeyCredParams\":[{\"type\":\"public-key\",\"alg\":-7},{\"type\":\"public-key\",\"alg\":-257},{\"type\":\"public-key\",\"alg\":-37},{\"type\":\"public-key\",\"alg\":-35},{\"type\":\"public-key\",\"alg\":-258},{\"type\":\"public-key\",\"alg\":-38},{\"type\":\"public-key\",\"alg\":-36},{\"type\":\"public-key\",\"alg\":-259},{\"type\":\"public-key\",\"alg\":-39},{\"type\":\"public-key\",\"alg\":-8}],\"timeout\":60000,\"attestation\":\"direct\",\"authenticatorSelection\":{\"authenticatorAttachment\":\"platform\",\"requireResidentKey\":true,\"userVerification\":\"required\"},\"excludeCredentials\":[],\"extensions\":{\"uvm\":true},\"status\":\"ok\",\"errorMessage\":\"\"}"; string exception =...

In the release above the following was added: Feature/blazor wasm by @Regenhardt in https://github.com/passwordless-lib/fido2-net-lib/pull/379 Looking at the demo for this in master it seems that the contents of Src/Fido2.BlazorWebAssembly should...

I try to implement passkeys. During the passkey creation phase, I use the following parameters: ```text Attestation type: direct Authenticator: not specified User verification: discouraged Resident key: required ``` The...

Currently, `$SupportedTargetFrameworks` only contains net6.0 - some other files do however contain logic that points to this libs having been available for other framework version too, like net5 or net472...

Tracking issue on work to cross target .NET8.0.

The readme link to online demo redirects to Bitwarden website > Online` examples: https://www.passwordless.dev/ Should it go to https://fido2-net-lib.passwordless.dev/passwordless#heroFoot instead?

Hi, I'm trying to work with WebAuthn for the first time. Everything works well on Android and Windows, however on IOS, I'm getting **TypeError: Type Error** when calling navigator.credentials.create or...

Hi, I'm using fido2-net-lib (version 3.0.1) in my .Net core (6) application. When I add a credential using my hardware token using Windows and Firefox or Chrome it is working...