aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/crypto/index.html
blob: 7c2ea16a71f12e7a792f8d6098b8ec585db8de0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
title: Crypto
slug: Web/API/Crypto
tags:
  - API
  - Interface
  - Reference
  - Web Crypt API
translation_of: Web/API/Crypto
---
<p>{{APIRef("Web Crypto API")}}</p>

<p><code><strong>Crypto</strong></code> インターフェイスは、現在のコンテキストで利用できる基本的な暗号機能を表します。これは、暗号強度の強い乱数生成器と暗号プリミティブへのアクセスを許可します。</p>

<p>このインターフェイスを持つオブジェクトは、{{domxref("Window.crypto")}} プロパティを通じてウェブコンテキスト上で利用可能です。</p>

<h2 id="Properties" name="Properties">プロパティ</h2>

<p><em>このインターフェイスは、{{domxref("RandomSource")}} 上に定義されたプロパティを実装します。</em></p>

<dl>
 <dt>{{domxref("Crypto.subtle")}} {{experimental_inline}}{{readOnlyInline}}</dt>
 <dd>ハッシュや署名、暗号化、複合など、共通の暗号プリミティブへのアクセスを提供する {{domxref("SubtleCrypto")}} オブジェクトを返します。</dd>
</dl>

<h2 id="Methods" name="Methods">メソッド</h2>

<p><em>このインターフェイスは、{{domxref("RandomSource")}} 上に定義されたメソッドを実装します。</em></p>

<dl>
 <dt>{{domxref("RandomSource.getRandomValues()")}}</dt>
 <dd>渡された {{ jsxref("TypedArray") }} を意味不明の乱数値で埋めます。</dd>
</dl>

<h2 id="Specifications" name="Specifications">仕様</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">仕様書</th>
   <th scope="col">策定状況</th>
   <th scope="col">備考</th>
  </tr>
 </tbody>
 <tbody>
  <tr>
   <td>{{SpecName("Web Crypto API", "#crypto-interface", "Crypto")}}</td>
   <td>{{Spec2("Web Crypto API")}}</td>
   <td>初期定義</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの実装状況</h2>

<div>
<div>
<div class="hidden">このページの互換表は構造化データから生成されます。データに貢献したい場合は <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックし、プルリクエストを送信してください。</div>

<p>{{Compat("api.Crypto")}}</p>
</div>
</div>

<h2 id="See_Also" name="See_Also">関連情報</h2>

<ul>
 <li><a href="/ja/docs/Components.utils.importGlobalProperties">Components.utils.importGlobalProperties</a></li>
</ul>