UserKeyStorageConfig

public class UserKeyStorageConfig

Configuration for UserKeysStorage.

  • The underlying storage mechanism.

    Declaration

    Swift

    public var storage: any Storage<[UserKey]>
  • Initializes a new UserKeyStorageConfig with default keychain storage.

    Declaration

    Swift

    public init()
  • Initializes a new UserKeyStorageConfig with custom storage.

    Declaration

    Swift

    public init(storage: any Storage<[UserKey]>)

    Parameters

    storage

    The storage to use.