Skip to content

Commit 7e68330

Browse files
Resolved #19: Outdated links in README
1 parent ebe5fb5 commit 7e68330

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ The samples are not ready for production use, as they are missing validation and
5656

5757
### Registration (Attestation)
5858

59-
Credential registration is performed by calling the [AuthenticatorMakeCredential](../Documentation/API/DSInternals.Win32.WebAuthn/WebAuthnApi/AuthenticatorMakeCredential.md) or [AuthenticatorMakeCredentialAsync](../Documentation/API/DSInternals.Win32.WebAuthn/WebAuthnApi/AuthenticatorMakeCredentialAsync.md) method:
59+
Credential registration is performed by calling the [AuthenticatorMakeCredential](../Documentation/API/DSInternals.Win32.WebAuthn.WebAuthnApi.md) or [AuthenticatorMakeCredentialAsync](../Documentation/API/DSInternals.Win32.WebAuthn.WebAuthnApi.md) method:
6060

6161
```cs
6262
var rp = new RelyingPartyInformation()
@@ -80,16 +80,14 @@ var response = api.AuthenticatorMakeCredential(rp, user, challenge, UserVerifica
8080

8181
### Authentication (Assertion)
8282

83-
Authentication using a previously registered credential is performed by calling the [AuthenticatorGetAssertion](../Documentation/API/DSInternals.Win32.WebAuthn/WebAuthnApi/AuthenticatorGetAssertion.md) or [AuthenticatorGetAssertionAsync](../Documentation/API/DSInternals.Win32.WebAuthn/WebAuthnApi/AuthenticatorGetAssertionAsync.md) method:
83+
Authentication using a previously registered credential is performed by calling the [AuthenticatorGetAssertion](../Documentation/API/DSInternals.Win32.WebAuthn.WebAuthnApi.md) or [AuthenticatorGetAssertionAsync](../Documentation/API/DSInternals.Win32.WebAuthn.WebAuthnApi.md) method:
8484

8585
```cs
8686
var api = new WebAuthnApi();
8787
var challenge = new byte[] { 0, 1, 2, 3 };
8888
var response = api.AuthenticatorGetAssertion("login.microsoft.com", challenge, UserVerificationRequirement.Required, AuthenticatorAttachment.CrossPlatform);
8989
```
9090

91-
See the [full API documentation](../Documentation/API/DSInternals.Win32.WebAuthn.md) for more information on using this library.
92-
9391
## Troubleshooting
9492

9593
### Rohitab API Monitor

0 commit comments

Comments
 (0)