KeyUnlockInteractive

class KeyUnlockInteractive(val title: String? = null, val subtitle: String? = null, val requireConfirmation: Boolean = false) : KeyUnlockData

A KeyUnlockData which will automatically show dialogs to interact with the user.

This can be passed to SecureArea.sign and SecureArea.keyAgreement to automatically prompt the user for authentication. Depending on the Secure Area implementation this uses either platform native dialogs (for biometric unlock) or the PassphrasePromptModel mechanism.

Constructors

Link copied to clipboard
constructor(title: String? = null, subtitle: String? = null, requireConfirmation: Boolean = false)

Properties

Link copied to clipboard

if true, require active user confirmation if used for passive biometrics.

Link copied to clipboard
val subtitle: String? = null

the subtitle to show in the authentication prompt or null to use default.

Link copied to clipboard
val title: String? = null

the title to show in the authentication prompt or null to use default.