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-store-exposed
/
dev.webauthn.server.store.exposed
/
ExposedCredentialStore
Exposed
Credential
Store
class
ExposedCredentialStore
(
db
:
Database
)
:
CredentialStore
JDBC-backed
CredentialStore
implementation using Exposed tables.
Members
Constructors
Exposed
Credential
Store
Link copied to clipboard
constructor
(
db
:
Database
)
Functions
find
By
Id
Link copied to clipboard
open
suspend override
fun
findById
(
id
:
CredentialId
)
:
StoredCredential
?
find
By
User
Id
Link copied to clipboard
open
suspend override
fun
findByUserId
(
userId
:
UserHandle
)
:
List
<
StoredCredential
>
save
Link copied to clipboard
open
suspend override
fun
save
(
credential
:
StoredCredential
)
update
Sign
Count
Link copied to clipboard
open
suspend override
fun
updateSignCount
(
id
:
CredentialId
,
signCount
:
Long
)