You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
expect URL-safe Base64 encoding, so the below examples will include this as an additional step.
117
117
118
118
Example code is given below.
@@ -122,15 +122,15 @@ link:webauthn-server-demo[`webauthn-server-demo`] for a complete demo server.
122
122
123
123
=== 1. Implement a `CredentialRepository`
124
124
125
-
The link:https://developers.yubico.com/java-webauthn-server/JavaDoc/webauthn-server-core/latest/com/yubico/webauthn/CredentialRepository.html[`CredentialRepository`] interface
125
+
The link:https://developers.yubico.com/java-webauthn-server/JavaDoc/webauthn-server-core-minimal/latest/com/yubico/webauthn/CredentialRepository.html[`CredentialRepository`] interface
126
126
abstracts your database in a database-agnostic way.
127
127
The concrete implementation will be different for every project, but you can use
The link:https://developers.yubico.com/java-webauthn-server/JavaDoc/webauthn-server-core/latest/com/yubico/webauthn/RelyingParty.html[`RelyingParty`] class
133
+
The link:https://developers.yubico.com/java-webauthn-server/JavaDoc/webauthn-server-core-minimal/latest/com/yubico/webauthn/RelyingParty.html[`RelyingParty`] class
134
134
is the main entry point to the library.
135
135
You can instantiate it using its builder methods,
136
136
passing in your `CredentialRepository` implementation (called `MyCredentialRepository` here) as an argument:
0 commit comments