io.fusionauth.domain.api.WebAuthnAuthenticatorAuthenticationResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fusionauth-java-client Show documentation
Show all versions of fusionauth-java-client Show documentation
The Java Client library provides a native Java binding to the FusionAuth REST API.
/*
* 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;
}