diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/fr/web/api/authenticatorresponse/index.html | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/fr/web/api/authenticatorresponse/index.html')
-rw-r--r-- | files/fr/web/api/authenticatorresponse/index.html | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/files/fr/web/api/authenticatorresponse/index.html b/files/fr/web/api/authenticatorresponse/index.html new file mode 100644 index 0000000000..45bfafa8da --- /dev/null +++ b/files/fr/web/api/authenticatorresponse/index.html @@ -0,0 +1,61 @@ +--- +title: AuthenticatorResponse +slug: Web/API/AuthenticatorResponse +tags: + - API + - Interface + - Reference + - Web Authentication API + - Web Authn +translation_of: Web/API/AuthenticatorResponse +--- +<p>{{APIRef("Web Authentication API")}}{{securecontext_header}}</p> + +<p>L'interface <code><strong>AuthenticatorResponse</strong></code>, rattachée à l'<a href="/en-US/docs/Web/API/Web_Authentication_API">API Web Authentication</a>, constitue l'interface de base pour les interfaces qui fournissent une racine cryptographique de confiance pour une paire de clés. Les interfaces filles contiennent des informations relatives au navigateur telles que l'origine du <em>challenge</em> et qui peuvent être renvoyée par {{domxref("PublicKeyCredential.response")}}.</p> + +<h2 id="Interfaces_basées_sur_AuthenticatorResponse">Interfaces basées sur <code>AuthenticatorResponse</code></h2> + +<p>Voici la liste des interfaces basées sur <code>AuthenticatorResponse</code>.</p> + +<div class="index"> +<ul> + <li>{{domxref("AuthenticatorAssertionResponse")}}</li> + <li>{{domxref("AuthenticatorAttestationResponse")}}</li> +</ul> +</div> + +<h2 id="Propriétés">Propriétés</h2> + +<dl> + <dt>{{domxref("AuthenticatorResponse.clientDataJSON")}}</dt> + <dd>Une chaîne de caractères <a href="/fr/docs/Learn/JavaScript/Objects/JSON">JSON</a> stockée dans un {{domxref("ArrayBuffer")}} et qui représente les données du client passées à {{domxref("CredentialsContainer.create()")}} ou {{domxref("CredentialsContainer.get()")}}.</dd> +</dl> + +<h2 id="Méthodes">Méthodes</h2> + +<p>Aucune.</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> + +<div class="hidden">Le tableau de compatibilité de cette page a été généré à partir de données structurées. Si vous souhaitez contribuer à ces données, n'hésitez pas à consulter <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> et à nous envoyer une <em>pull request</em>.</div> + +<p>{{Compat("api.AuthenticatorResponse")}}</p> |