verifyPassword abstract method

void verifyPassword(
  1. PasswordUserVerificationContext context,
  2. PasswordUserVerificationHandler handler
)

The user verification interaction.

In the case of the registration the user must provide credentials again as required by the FIDO UAF protocol. In the case of the authentication, this is invoked for the user to provide credentials.

If the user provided invalid credentials, and it results in a non-recoverable error, then the onError method will be invoked.

Params:

  • context: the object providing the information required for the verification process.
  • handler: the object that must be notified with the result of the interaction.

Implementation

void verifyPassword(
  PasswordUserVerificationContext context,
  PasswordUserVerificationHandler handler,
);