Nevis Mobile Authentication SDK React Native plugin
    Preparing search index...

    Class FidoUafAttestationInformationGetterAbstract

    The object that can be used to obtain the information regarding the support of Full Basic Attestation in this device.

    IMPORTANT
    This operation is Android specific. On iOS the onSuccess will be invoked with undefined FIDO UAF attestation information.

    If full basic attestation is required by the backend during registration, and this device does not support it, registration will fail. This information can be used to preemptively inform the user that the device is not supported.

    Usage example:

     async function getAttestationInformation(
    client: MobileAuthenticationClient,
    ): Promise<void> {
    await client.deviceCapabilities
    .androidDeviceCapabilities
    .fidoUafAttestationInformationGetter
    .onSuccess((FidoUafAttestationInformation? info) {
    // handle success
    })
    .onError((error) {
    // handle error
    })
    .execute();
    }

    Hierarchy (View Summary)

    Index

    Methods

    • Executes the operation asynchronously.

      Returns Promise<void>