Expand description
§Platform-independent secure storage model
This module defines a plug and play model for platform-specific credential stores.
The model comprises two traits: CredentialBuilderApi for the underlying store
and CredentialApi for the entries in the store. These traits must be implemented
in a thread-safe way, a requirement captured in the CredentialBuilder and
Credential types that wrap them.
Enums§
- Credential
Persistence - A descriptor for the lifetime of stored credentials, returned from
a credential store’s
persistencecall.
Traits§
- Credential
Api - The API that credentials implement.
- Credential
Builder Api - The API that credential builders implement.
Functions§
Type Aliases§
- Credential
- A thread-safe implementation of the Credential API.
- Credential
Builder - A thread-safe implementation of the
CredentialBuilderAPI.