Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AuthenticatorAssertionResponseJSON

A slightly-modified AuthenticatorAssertionResponse to simplify working with ArrayBuffers that are Base64URL-encoded in the browser so that they can be sent as JSON to the server.

interface AuthenticatorAssertionResponseJSON {
authenticatorData: Base64URLString;
clientDataJSON: Base64URLString;
signature: Base64URLString;
userHandle?: Base64URLString;
}

§Properties

§
authenticatorData: Base64URLString
[src]

The authenticator data returned by the authenticator.

§
clientDataJSON: Base64URLString
[src]

JSON-serialized client data passed to the authenticator.

§

The signature generated by the authenticator.

§

The user handle returned by the authenticator, if any.