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.
§
signature: Base64URLString
[src]The signature generated by the authenticator.
§
userHandle?: Base64URLString
[src]The user handle returned by the authenticator, if any.