Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

 

Explain that first factor and other forms of second factor authentication is up to the developer as to how they want to implement it.

SurePassIdU2fSign

 Below is the code related to processing a FIDO U2F sign operation.


Code Block
languagejava
titleSurePassIdU2fSign
linenumberstrue
import com.surepassid.fido.u2f.FidoClientListener;
import com.surepassid.fido.u2f.SurePassIdU2f;

public class DemoSignInActivity extends Activity implements SurePassIdU2fSign.ListenerFidoClientListener {
  public static final String SERVER_URL = "https://fidocert.surepassid.com/server.aspx";

  private SurePassIdU2fSignSurePassIdU2f mU2fSignmU2f;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    initUi();
    mU2fSignmU2f = new SurePassIdU2fSignSurePassIdU2f(this, this);
  }

  void afterSignInSuccess(String username) {
    // After the user has successfully signed in start the U2F Sign process.
    mU2fSignmU2f.u2fSign("https://u2f.server.com/example", usernamesign(SERVER_URL, sessionToken);
  }

  @Override
  public void onActivityResult(int requestCode, int resultCode, Intent intent) {
    switch (requestCode) {
      case U2fClientIntent.REQUEST_CODE_SIGN:
        // Call onActivityResult for mU2fSign. Forward the result to SurePassIdU2f.onActivityResult
        mU2fSignmU2f.onActivityResult(requestCode, resultCode, intent);
        break;
    }
  }

  /**
   * Called if there not any errors processing the FIDO request. The
   * result indicates thte status of the request.
   */
  @Override
  public void fidoClientResult(Result result){
    switch (result) {
      case SUCCESS:
        gotoTargetActivity();
        break;

      case CANCELED:
        fidoClientCanceled();
        break;

      case ALTERNATE_VERIFICATION:
        gotoAlternateVerificationActivity();
        break;
    }
  }

  /**
   * Called if there was an error during the U2F Sign Operation.
   *
   * @param errorMessage The error that occurred.
   */
  @Override
  public void fidoClientError(CharSequence errorMessage) {
    // Handle the error message.
    displayMessage(errorMessage);
  }

  /**
   * Method used to go to the app's target activity after U2F Sign succeeds.
   */
  @Override
  public void gotoTargetActivity() {
    Intent intent = new Intent(this, DemoAppActivity.class);
    startActivity(intent);
  }

  /**
   * Method used to go to an activity that provides the user the ability
   * to use a different second factor method if they are unable to use
   * a U2F Authenticator.
   */
  @Override
  public void gotoAlternateVerificationActivity() {
    Intent intent = new Intent(this, DemoEnterOtpActivity.class);
    startActivity(intent);
  }

  /**
   * Called if the U2F Sign operation was canceled by the user.
   */

 @Override   public void u2fSignCanceledfidoClientCanceled() {
    resetFormValues();
    enableForm();
    displayMessage("Sign In canceled.");
  }

  /**
   * Called if there was an error during the U2F Sign Operation.
   *
   * @param errorMessage The error that occurred.
   */
  @Override
  public void u2fSignError(CharSequence errorMessage) {
    displayMessage(errorMessage);
    enableForm();
 
}
}

Upon successfully authenticating the user it should call

...

That method will perform all the necessary U2F operations.