This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2021.
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
The attestationObject property of the AuthenticatorAttestationResponse interface returns an ArrayBuffer containing the new public key, as well as signature over the entire attestationObject with a private key that is stored in the authenticator when it is manufactured.
As part of the CredentialsContainer.create() call, an authenticator will create a new key pair as well as an attestationObject for that key pair. The public key that corresponds to the private key that has created the attestation signature is well known; however, there are various well known attestation public key chains for different ecosystems (for example, Android or TPM attestations).
After decoding the CBOR encoded ArrayBuffer, the resulting JavaScript object will contain the following properties:
authDataThe Authenticator data for the operation. Note that in AuthenticatorAssertionResponse, the authenticatorData is exposed as a property in a JavaScript object (see AuthenticatorAssertionResponse.authenticatorData) while in AuthenticatorAttestationResponse, the authenticatorData is a property in a CBOR map.
The same AuthenticatorAssertionResponse.authenticatorData field is used by both AuthenticatorAttestationResponse and by AuthenticatorAssertionResponse. When used in attestation, it contains an optional field, attestedCredentialData. This field is not included when used in the AuthenticatorAssertionResponse. The attestedCredentialData field contains the credentialId and credentialPublicKey.
fmtA text string that indicates the format of the attStmt. The WebAuthn specification defines a number of formats; however, formats may also be defined in other specifications and registered in an IANA registry. Formats defined by WebAuthn are:
"packed""tpm""android-key""android-safetynet""fido-u2f""none"attStmtAn attestation statement that is of the format defined by "fmt". For now, see the WebAuthn specification for details on each format.
See Creating a public key credential for a detailed example.
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
attestationObject |
67 | 18 | 60Only supports USB U2F tokens. |
54 | 13 | 70 | 9260–92Only supports USB U2F tokens. |
48 | 13 | 10.0 | No | 13 |
CredentialsContainer.create(): the method used to create a statement with a cryptographic challenge which signature by the authenticator is contained in attStmt, with the specified attestation transport option.
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/AuthenticatorAttestationResponse/attestationObject