blob: 00a569df976612db05f370009976873b382c22e9 (
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
|
---
title: Crypto.subtle
slug: Web/API/Crypto/subtle
tags:
- API
- Cryptgraphy
- Property
- Read-only
- Reference
- Web Crypt API
translation_of: Web/API/Crypto/subtle
---
<p>{{APIRef("Web Crypto API")}}</p>
<p><strong><code>Crypto.subtle</code></strong> 読み取り専用プロパティは、暗号化操作ができる {{domxref("SubtleCrypto")}} オブジェクトを返します。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre>var <em>crypto</em> = crypto.subtle;</pre>
<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>
<tr>
<td>{{ SpecName('Web Crypto API', '#dfn-Crypto', 'Crypto.subtle') }}</td>
<td>{{ Spec2('Web Crypto API') }}</td>
<td>初期定義。</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの実装状況</h2>
<p>{{Compat("api.Crypto.subtle")}}</p>
<h2 id="See_Also" name="See_Also">関連情報</h2>
<ul>
<li>{{domxref("Crypto")}}.</li>
<li>{{domxref("SubtleCrypto")}}.</li>
<li><a href="https://vibornoff.github.io/webcrypto-examples/index.html">Compatibility test page</a>.</li>
<li><a href="https://github.com/vibornoff/webcrypto-shim">Shim for IE11 and Safari</a>.</li>
</ul>
|