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

js.web.credentialmanagement.webauthn.AuthenticatorAssertionResponse Maven / Gradle / Ivy

package js.web.credentialmanagement.webauthn;

import js.util.buffers.ArrayBuffer;
import org.teavm.jso.JSBody;
import org.teavm.jso.JSProperty;

import javax.annotation.Nullable;


public interface AuthenticatorAssertionResponse extends AuthenticatorResponse {
    @JSBody(script = "return AuthenticatorAssertionResponse.prototype")
    static AuthenticatorAssertionResponse prototype() {
        throw new UnsupportedOperationException("Available only in JavaScript");
    }

    @JSBody(script = "return new AuthenticatorAssertionResponse()")
    static AuthenticatorAssertionResponse create() {
        throw new UnsupportedOperationException("Available only in JavaScript");
    }

    @JSProperty
    ArrayBuffer getAuthenticatorData();

    @JSProperty
    ArrayBuffer getSignature();

    @JSProperty
    @Nullable
    ArrayBuffer getUserHandle();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy