All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.fusionauth.domain.api.WebAuthnAuthenticatorAuthenticationResponse Maven / Gradle / Ivy

There is a newer version: 1.53.0
Show newest version
/*
 * Copyright (c) 2022, FusionAuth, All Rights Reserved
 */
package io.fusionauth.domain.api;

import io.fusionauth.domain.Buildable;

/**
 * The authenticator's response for the authentication ceremony in its encoded format
 *
 * @author Spencer Witt
 */
public class WebAuthnAuthenticatorAuthenticationResponse implements Buildable {
  /**
   * The authenticator data in CBOR that has been base64URL-encoded for transport
   */
  public String authenticatorData;

  /**
   * Base64URL-encoded client data for the authentication ceremony
   */
  public String clientDataJSON;

  /**
   * The base64URL-encoded signature generated by the authenticator for this authentication ceremony
   */
  public String signature;

  /**
   * The base64URL-encoded user handle for this authentication ceremony, if present
   */
  public String userHandle;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy