From b921464c3b9978e2c291308bb3c09d5e33ea3299 Mon Sep 17 00:00:00 2001 From: Roman Bukin Date: Thu, 21 Dec 2023 15:59:05 +0300 Subject: [PATCH] Fix docs --- src/WebAuthn.Net/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/WebAuthn.Net/README.md b/src/WebAuthn.Net/README.md index 2048391..8ba7d2c 100644 --- a/src/WebAuthn.Net/README.md +++ b/src/WebAuthn.Net/README.md @@ -161,7 +161,7 @@ The WebAuthn specification defines two main processes that occur during interact ### Registration ceremony -Also, this process can be referred to as "Registering a New Credential". +This process is detailed in the ["7.1. Registering a New Credential"](https://www.w3.org/TR/2023/WD-webauthn-3-20230927/#sctn-registering-a-new-credential) section of the WebAuthn specification. The essence of the process is to associate a public key with the user account. @@ -174,7 +174,7 @@ As a result of this operation, an association is formed between the user's accou ### Authentication ceremony -Also, this process can be referred to as "Verifying an Authentication Assertion". +This process is detailed in the ["7.2. Verifying an Authentication Assertion"](https://www.w3.org/TR/2023/WD-webauthn-3-20230927/#sctn-verifying-assertion) section of the WebAuthn specification. The essence 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.