SecureBlackbox 2020 Android Edition

Questions / Feedback?

AuthVerify Event

Requests the application to validate an authentication token.

Syntax

public class DefaultAuthenticatorEventListener implements AuthenticatorEventListener {
  ...
  public void authVerify(AuthenticatorAuthVerifyEvent e) {}
  ...
}

public class AuthenticatorAuthVerifyEvent {
  public String userID;
  public String authMethod;
  public String authToken;
  public String authMethodData;
  public boolean valid;
}

Remarks

Component fires this event to ask the application to validate an authentication token that it can't validate automatically. This can happen if UserID was not found in the user database or a custom authentication method is used.

AuthMethod and AuthToken specify the authentication method being used and the authentication token provided by the user. AuthMethodData contains an application-specific data provided by the application at the beginning of the authentication step.

An event handler subscribed to this event should validate the authentication token provided by the user and set the Valid parameter accordingly.

Copyright (c) 2022 /n software inc. - All rights reserved.
SecureBlackbox 2020 Android Edition - Version 20.0 [Build 8156]