diff options
Diffstat (limited to 'files/fr/web/api/authenticatorattestationresponse/index.md')
-rw-r--r-- | files/fr/web/api/authenticatorattestationresponse/index.md | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/files/fr/web/api/authenticatorattestationresponse/index.md b/files/fr/web/api/authenticatorattestationresponse/index.md new file mode 100644 index 0000000000..13a1741a88 --- /dev/null +++ b/files/fr/web/api/authenticatorattestationresponse/index.md @@ -0,0 +1,55 @@ +--- +title: AuthenticatorAttestationResponse +slug: Web/API/AuthenticatorAttestationResponse +tags: + - API + - AuthenticatorAttestationResponse + - Interface + - Reference + - Web Authentication API + - WebAuthn +translation_of: Web/API/AuthenticatorAttestationResponse +--- +<p>{{APIRef("Web Authentication API")}}{{securecontext_header}}</p> + +<p>L'interface <strong><code>AuthenticatorAttestationResponse</code></strong>, rattachée à l'<a href="/en-US/docs/Web/API/Web_Authentication_API">API Web Authentication</a>, est renvoyée par un appel à {{domxref('CredentialsContainer.create()')}} lorsqu'un objet {{domxref('PublicKeyCredential')}} est passé à la méthode. Elle fournit une racine cryptographique de confiance pour la nouvelle paire de clés qui a été générée.</p> + +<h2 id="Propriétés">Propriétés</h2> + +<dl> + <dt><code>AuthenticatorAttestationResponse.clientDataJSON</code></dt> + <dd>Les données relatives aux client pour l'authentification telles que l'origine et le <em>challenge</em>. La propriété {{domxref("AuthenticatorAttestationResponse.clientDataJSON","clientDataJSON")}} est héritée de l'interface {{domxref("AuthenticatorResponse")}}.</dd> + <dt>{{domxref("AuthenticatorAttestationResponse.attestationObject")}}</dt> + <dd>Un objet {{domxref("ArrayBuffer")}} qui contient les données de l'authenticateur ainsi qu'une instruction d'attestation pour la nouvelle paire de clés.</dd> +</dl> + +<h2 id="Méthodes">Méthodes</h2> + +<p>Aucune.</p> + +<h2 id="Exemples">Exemples</h2> + +<p>TBD</p> + +<h2 id="Spécifications">Spécifications</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Spécification</th> + <th scope="col">État</th> + <th scope="col">Commentaires</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName('WebAuthn')}}</td> + <td>{{Spec2('WebAuthn')}}</td> + <td>Définition initiale.</td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> + +<p>{{Compat("api.AuthenticatorAttestationResponse")}}</p> |