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/ja/web/api/authenticatorassertionresponse | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/api/authenticatorassertionresponse')
-rw-r--r-- | files/ja/web/api/authenticatorassertionresponse/index.html | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/files/ja/web/api/authenticatorassertionresponse/index.html b/files/ja/web/api/authenticatorassertionresponse/index.html new file mode 100644 index 0000000000..2198f6b051 --- /dev/null +++ b/files/ja/web/api/authenticatorassertionresponse/index.html @@ -0,0 +1,91 @@ +--- +title: AuthenticatorAssertionResponse +slug: Web/API/AuthenticatorAssertionResponse +tags: + - API + - Authentication + - AuthenticatorAssertionResponse + - Interface + - Reference + - Web Authentication API + - WebAuthn + - インターフェイス +translation_of: Web/API/AuthenticatorAssertionResponse +--- +<div>{{APIRef("Web Authentication API")}}{{securecontext_header}}</div> + +<p><code><strong>AuthenticatorAssertionResponse</strong></code> は <a href="/ja/docs/Web/API/Web_Authentication_API">Web Authentication API</a> のインターフェイスで、 {{domxref('CredentialsContainer.get()')}} に {{domxref('PublicKeyCredential')}} を渡すと返されます。そして、キーペアを持ち、認証付きリクエストが有効で承認されていることをサービスに証明します。</p> + +<p>このインターフェイスは {{domxref("AuthenticatorResponse")}} を継承しています。</p> + +<div class="note"> +<p><strong>メモ:</strong> このインターフェイスは最上位のコンテキストに限定されています。 {{HTMLElement("iframe")}} 要素の中で使用しても、何も効果がありません。</p> +</div> + +<h2 id="Properties" name="Properties">プロパティ</h2> + +<dl> + <dt><code>AuthenticatorAssertionResponse.clientDataJSON</code> {{securecontext_inline}}{{readonlyinline}}</dt> + <dd>認証のためのクライアントデータで、オリジンやチャレンジです。 {{domxref("AuthenticatorAttestationResponse.clientDataJSON","clientDataJSON")}} プロパティは {{domxref("AuthenticatorResponse")}} から継承しています。</dd> + <dt>{{domxref("AuthenticatorAssertionResponse.authenticatorData")}} {{securecontext_inline}}{{readonlyinline}}</dt> + <dd>{{jsxref("ArrayBuffer")}} で、認証機器からの情報、例えば Relying Party ID Hash (rpIdHash)、証明カウンター、ユーザー存在テスト、ユーザー検証フラグ、その他の認証機器によって処理される拡張情報が入ります。</dd> + <dt>{{domxref("AuthenticatorAssertionResponse.signature")}} {{securecontext_inline}}{{readonlyinline}}</dt> + <dd>{{domxref("AuthenticatorAssertionResponse.authenticatorData")}} および {{domxref("AuthenticatorResponse.clientDataJSON")}} に関するアサーション署名です。アサーション署名は {{domxref("CredentialsContainer.create()","navigator.credentials.create()")}} の呼び出しで生成された鍵ペアの秘密鍵によって作成され、同じ鍵ペアの公開鍵によって検証されます。</dd> + <dt>{{domxref("AuthenticatorAssertionResponse.userHandle")}} {{securecontext_inline}}{{readonlyinline}}</dt> + <dd>{{jsxref("ArrayBuffer")}} で、非透過的なユーザー識別子が入ります。</dd> +</dl> + +<h2 id="Methods" name="Methods">メソッド</h2> + +<p>なし。</p> + +<h2 id="Examples" name="Examples">例</h2> + +<pre class="brush: js">var options = { + challenge: new Uint8Array([/* bytes sent from the server */]) +}; + +navigator.credentials.get({ "publicKey": options }) + .then(function (credentialInfoAssertion) { + var assertionResponse = credentialInfoAssertion.response; + // Do something specific with the response + + // send assertion response back to the server + // to proceed with the control of the credential +}).catch(function (err) { + console.error(err); +}); + +</pre> + +<h2 id="Specifications" name="Specifications">仕様書</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">仕様書</th> + <th scope="col">状態</th> + <th scope="col">備考</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName('WebAuthn', '#iface-authenticatorassertionresponse', 'AuthenticatorAssertionResponse interface')}}</td> + <td>{{Spec2('WebAuthn')}}</td> + <td>初回定義</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> + +<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div> + +<p>{{Compat("api.AuthenticatorAssertionResponse")}}</p> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li>{{domxref("AuthenticatorAttestationResponse")}}: 新しい資格情報を生成する際に得られる種類のレスポンスのインターフェイス</li> + <li>{{domxref("AuthenticatorResponse")}}: 親インターフェイス</li> +</ul> |