WebAuthn Kotlin Multiplatform API
Toggle table of contents
0.4.1-SNAPSHOT
jvm
Target filter
jvm
Switch theme
Search in API
Skip to content
WebAuthn Kotlin Multiplatform API
webauthn-server-core-jvm
/
dev.webauthn.server
/
CredentialStore
Credential
Store
interface
CredentialStore
Stores credential public keys and signature counters.
Inheritors
InMemoryCredentialStore
Members
Functions
find
By
Id
Link copied to clipboard
abstract
suspend
fun
findById
(
id
:
CredentialId
)
:
StoredCredential
?
find
By
User
Id
Link copied to clipboard
abstract
suspend
fun
findByUserId
(
userId
:
UserHandle
)
:
List
<
StoredCredential
>
save
Link copied to clipboard
abstract
suspend
fun
save
(
credential
:
StoredCredential
)
update
Sign
Count
Link copied to clipboard
abstract
suspend
fun
updateSignCount
(
id
:
CredentialId
,
signCount
:
Long
)