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/glossary/alpn/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/ja/glossary/alpn/index.html')
-rw-r--r-- | files/ja/glossary/alpn/index.html | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/files/ja/glossary/alpn/index.html b/files/ja/glossary/alpn/index.html new file mode 100644 index 0000000000..f92f41dc9a --- /dev/null +++ b/files/ja/glossary/alpn/index.html @@ -0,0 +1,61 @@ +--- +title: ALPN +slug: Glossary/ALPN +tags: + - ALPN + - Draft + - Glossary + - NeedsContent + - TLS +translation_of: Glossary/ALPN +--- +<p><strong>Application-Layer {{Glossary("Protocol")}} Negotiation</strong> (<strong>ALPN</strong>) は、 {{Glossary("TLS")}} 拡張であり、追加のラウンドトリップを必要とせずに、暗号化された接続をネゴシエートするアプリケーションレイヤープロトコルを示します。</p> + +<table class="standard-table"> + <caption>重要なプロトコル識別子:</caption> + <thead> + <tr> + <th scope="col">プロトコル</th> + <th scope="col">識別シーケンス</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{Glossary("HTTP")}}/1.1</td> + <td><code>0x68 0x74 0x74 0x70 0x2F 0x31 0x2E 0x31</code> ("http/1.1")</td> + </tr> + <tr> + <td>{{Glossary("HTTP 2", "HTTP/2")}}</td> + <td><code>0x68 0x32</code> ("h2")</td> + </tr> + <tr> + <td>HTTP/2 over cleartext {{Glossary("TCP")}}</td> + <td><code>0x68 0x32 0x63</code> ("h2c")</td> + </tr> + </tbody> +</table> + +<h2 id="仕様">仕様</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">仕様</th> + <th scope="col">ステータス</th> + <th scope="col">備考</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{RFC(7301)}}</td> + <td><span class="spec-RFC">IETF RFC</span></td> + <td>初回定義</td> + </tr> + </tbody> +</table> + +<h2 id="関連項目">関連項目</h2> + +<ul> + <li><a href="https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml#alpn-protocol-ids">IANA 登録 ALPN 識別子</a></li> +</ul> |