WebAuthn.Net
1.3.4
dotnet add package WebAuthn.Net --version 1.3.4
NuGet\Install-Package WebAuthn.Net -Version 1.3.4
<PackageReference Include="WebAuthn.Net" Version="1.3.4" />
paket add WebAuthn.Net --version 1.3.4
#r "nuget: WebAuthn.Net, 1.3.4"
// Install WebAuthn.Net as a Cake Addin #addin nuget:?package=WebAuthn.Net&version=1.3.4 // Install WebAuthn.Net as a Cake Tool #tool nuget:?package=WebAuthn.Net&version=1.3.4
WebAuthn.Net
The main library, which contains the key logic, as well as abstractions for storage. Everything else is additions to it.
Quickstart
Integration with databases
For a quick and easy start, WebAuthn.Net provides ready-to-use storage implementations for different databases as separate packages, containing a minimal set of dependencies
Microsoft SQL Server
To connect WebAuthn.Net with a ready-to-use storage implementation for Microsoft SQL Server, you need to install the WebAuthn.Net.Storage.SqlServer
package and call the corresponding extension method.
services.AddWebAuthnSqlServer(
configureSqlServer: sqlServer =>
{
sqlServer.ConnectionString = "CONNECTION_STRING_HERE";
});
Documentation detailing the creation of a schema in the database is contained in the README.md
of the corresponding package.
PostgreSQL
To connect WebAuthn.Net with a ready-to-use storage implementation for PostgreSQL, you need to install the WebAuthn.Net.Storage.PostgreSql
package and call the corresponding extension method.
services.AddWebAuthnPostgreSql(
configurePostgreSql: postgresql =>
{
postgresql.ConnectionString = "CONNECTION_STRING_HERE";
});
Documentation detailing the creation of a schema in the database is contained in the README.md
of the corresponding package.
MySQL
To connect WebAuthn.Net with a ready-to-use storage implementation for MySQL, you need to install the WebAuthn.Net.Storage.MySql
package and call the corresponding extension method.
services.AddWebAuthnMySql(
configureMySql: mysql =>
{
mysql.ConnectionString = "CONNECTION_STRING_HERE";
});
Documentation detailing the creation of a schema in the database is contained in the README.md
of the corresponding package.
Registration
Creating registration ceremony options
var result = await _registrationCeremonyService.BeginCeremonyAsync(
httpContext: HttpContext,
request: new BeginRegistrationCeremonyRequest(
origins: null,
topOrigins: null,
rpDisplayName: "My Awesome Web Service",
user: new PublicKeyCredentialUserEntity(
name: "User Name",
id: new byte[] { 0x01, 0x03, 0x03, 0x07 },
displayName: "User Display Name"),
challengeSize: 32,
pubKeyCredParams: new CoseAlgorithm[]
{
CoseAlgorithm.ES256,
CoseAlgorithm.ES384,
CoseAlgorithm.ES512,
CoseAlgorithm.RS256,
CoseAlgorithm.RS384,
CoseAlgorithm.RS512,
CoseAlgorithm.PS256,
CoseAlgorithm.PS384,
CoseAlgorithm.PS512,
CoseAlgorithm.EdDSA
},
timeout: 300_000,
excludeCredentials: RegistrationCeremonyExcludeCredentials.AllExisting(),
authenticatorSelection: new AuthenticatorSelectionCriteria(
authenticatorAttachment: null,
residentKey: ResidentKeyRequirement.Required,
requireResidentKey: true,
userVerification: UserVerificationRequirement.Required),
hints: null,
attestation: null,
attestationFormats: null,
extensions: null),
cancellationToken: cancellationToken);
You can change any options and parameters at your discretion.
The origins
and topOrigins
are optional parameters and default to the address of the domain on which the web host processing the request is located. You need these settings if for some reason the default logic does not suit you and you need to override it.
Completing the registration ceremony
var result = await _registrationCeremonyService.CompleteCeremonyAsync(
httpContext: HttpContext,
request: new CompleteRegistrationCeremonyRequest(
registrationCeremonyId: registrationCeremonyId,
description: "Windows Hello Authentication",
response: model),
cancellationToken: cancellationToken);
In this example, model
is the result of the navigator.credentials.create()
function serialized to JSON
Authentication
Creating authentication ceremony options
var result = await _authenticationCeremonyService.BeginCeremonyAsync(
httpContext: HttpContext,
request: new BeginAuthenticationCeremonyRequest(
origins: null,
topOrigins: null,
userHandle: new byte[] { 0x01, 0x03, 0x03, 0x07 },
challengeSize: 32,
timeout: 300_000,
allowCredentials: AuthenticationCeremonyIncludeCredentials.AllExisting(),
userVerification: UserVerificationRequirement.Required,
hints: null,
attestation: null,
attestationFormats: null,
extensions: null),
cancellationToken: cancellationToken);
As in the example with the registration ceremony, you can change all the parameters at your own discretion.
The origins
and topOrigins
are also optional parameters, similar to how they are when creating options for the registration ceremony (by default, they equal the address of the web host and need to be specified if you require an override).
The userHandle
is optional for the authentication ceremony, but the WebAuthn specification contains additional comments on this (the comments relate to the combination of userHandle
and allowCredentials
):
If the user account to authenticate is not already identified, then the relying party may leave this member empty or unspecified. In this case, only discoverable credentials will be utilized in this authentication ceremony, and the user account may be identified by the userHandle of the resulting AuthenticatorAssertionResponse.
Discoverable Credential is a synonym for Passkey.
Completing the authentication ceremony
var result = await _authenticationCeremonyService.CompleteCeremonyAsync(
httpContext: HttpContext,
request: new CompleteAuthenticationCeremonyRequest(
authenticationCeremonyId: authenticationCeremonyId,
response: model),
cancellationToken: cancellationToken);
In this example, model
is the result of the navigator.credentials.get()
function serialized to JSON.
Key concepts
The WebAuthn specification defines two main processes that occur during interaction with the user. They are called the registration and authentication ceremonies.
Registration ceremony
This process is detailed in the "7.1. Registering a New Credential" section of the WebAuthn specification.
The purpose of the process is to associate a public key with the user account.
- Generate a random value (
challenge
) and read the identifier of the authenticated user (userHandle
) on the backend - Pass these values to the frontend as options in the method
navigator.credentials.create()
- Pass the result of the
navigator.credentials.create()
method to the backend, where its validation will be performed - Obtain the
credentialId
during the validation process - If the validation was successful - create an association between
userHandle
andcredentialId
on the backend
As a result of this operation, an association is formed between the user's account and a specific public key, stored both on the backend and on the authenticator device. In the future, these data will be used for user authentication.
Authentication ceremony
This process is detailed in the "7.2. Verifying an Authentication Assertion" section of the WebAuthn specification.
The purpose of the process comes down to comparing the credentialId
and userHandle
(in the case of Passkeys), which were created during the registration ceremony, with the data stored on the backend to authenticate the user.
- Generate a random value (
challenge
) and optionally (in the case of Passkeys) read the existing user's public keys - Pass these values to the frontend as options in the method
navigator.credentials.get()
- Pass the result of executing
navigator.credentials.get()
to the backend, where validation will be performed - Validate the result of the
navigator.credentials.get()
method on the backend by comparing thecredentialId
anduserHandle
(in the case of Passkeys) with the values created during the registration ceremony - If the validation was successful - authenticate the user
This is a highly simplified description of the processes. To familiarize yourself with what is actually happening, it is strongly recommended to read the specification.
Key concepts in practice
For practical work with key concepts in WebAuthn.Net, there are 2 interfaces: IRegistrationCeremonyService
and IAuthenticationCeremonyService
.
They are built on similar principles:
- The
BeginCeremonyAsync
method, which takes parameters for generating options for the corresponding ceremony and returns:- An identifier of the corresponding ceremony, which you need to handle in such a way that only the backend has access to its raw value. For this, place it in one of the following locations:
- in a cookie (encrypt the identifier and set
httponly
andsecure
properties to the cookies) - in a session (store the value on the backend, in any convenient way)
- in a cookie (encrypt the identifier and set
- Options in the form of a model suitable for serialization to JSON, which can later be passed to the corresponding API call -
navigator.credentials.create()
ornavigator.credentials.get()
.
- An identifier of the corresponding ceremony, which you need to handle in such a way that only the backend has access to its raw value. For this, place it in one of the following locations:
- The
CompleteCeremonyAsync
method, which takes the result ofnavigator.credentials.create()
ornavigator.credentials.get()
and returns the result of the ceremony, which allows you to find out whether it was completed successfully, as well as depending on the ceremony - additional parameters that can be used to improve security and user experience.
In other words, there are two interfaces, each with two methods, and they encapsulate all the logic needed to implement WebAuthn (Passkeys).
Context
To ensure the execution of each operation in a transaction (creation of registration ceremony options, completion of the registration ceremony, creation of authentication ceremony options, completion of the authentication ceremony), a context is used.
This is a class that implements the IWebAuthnContext
interface, which in turn inherits the IAsyncDisposable
interface, and also contains a property for accessing the current request context (HttpContext
) and the CommitAsync
method, which is called at the very end of each operation before returning the result.
The context is passed to all methods that work with the database, which allows different components of the library to access the same transaction throughout the entire request processing pipeline.
The context is created by calling the IWebAuthnContextFactory.CreateAsync
method, which takes the current request context (HttpContext
) as a parameter. It is assumed that within the IWebAuthnContextFactory
implementation, a connection to the database will be established, and a transaction, within which the current request will be processed, will be opened.
FIDO Metadata
To ensure trustworthiness, the service refers to the metadata in the FIDO Metadata Service and uses its data in the process of validating requests.
WebAuthn.Net includes a background service (FidoMetadataBackgroundIngestHostedService
, which implements the IHostedService
and IDisposable
interfaces) that downloads, verifies, and periodically updates these metadata in the background.
The service is designed to first download the data and then go into a background update. This is done so that the application, at start-up, downloads the blob from the Fido Metadata Service, and then continues its initialization. This guarantees the presence of metadata if the application successfully launches.
Meanwhile, WebAuthn.Net uses an in-memory storage implementation for such data.
This approach is very simple and requires no complex logic, but it has one significant drawback:
[!WARNING] If the FIDO Metadata Service is unavailable, your application may not start.
Therefore, you can implement your own storage and update of metadata based on a persistent storage so that the application start does not depend on the availability of the FIDO Metadata Service.
Dependency Injection
WebAuthn.Net has ready-to-use extension methods that allow easy integration with Microsoft.Extensions.DependencyInjection
.
It is assumed that all components are registered with a Singleton
lifetime.
Meanwhile, internal registrations of all services and components are performed through Services.TryAddSingleton
(with the exception of options, which are registered using Services.AddOptions
). This makes it very easy to override any service or component. You just need to register it with a Singleton lifetime BEFORE calling the WebAuthn.Net extension methods. In this case, default implementations will not be registered only for those components that you have overridden.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- libsodium (>= 1.0.20)
- Microsoft.Extensions.Logging.Abstractions (>= 6.0.4)
- System.Formats.Cbor (>= 6.0.0)
- System.IdentityModel.Tokens.Jwt (>= 6.35.0)
-
net8.0
- libsodium (>= 1.0.20)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.1)
- System.Formats.Cbor (>= 8.0.0)
- System.IdentityModel.Tokens.Jwt (>= 7.5.2)
NuGet packages (5)
Showing the top 5 NuGet packages that depend on WebAuthn.Net:
Package | Downloads |
---|---|
WebAuthn.Net.Storage.PostgreSql
WebAuthn.Net storage implementation for PostgreSQL 16.0 or higher |
|
WebAuthn.Net.OpenTelemetry
Library for integrating WebAuthn.Net metrics with OpenTelemetry |
|
WebAuthn.Net.Storage.MySql
WebAuthn.Net storage implementation for MySQL 8.0 or higher |
|
WebAuthn.Net.Storage.SqlServer
WebAuthn.Net storage implementation for Microsoft SQL Server 2019 or higher |
|
WebAuthn.Net.Storage.InMemory
An in-memory storage implementation for WebAuthn.Net, intended for testing, demonstration, and development |
GitHub repositories
This package is not used by any popular GitHub repositories.