aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/crypto
diff options
context:
space:
mode:
Diffstat (limited to 'files/it/web/api/crypto')
-rw-r--r--files/it/web/api/crypto/index.html68
-rw-r--r--files/it/web/api/crypto/subtle/index.html52
2 files changed, 0 insertions, 120 deletions
diff --git a/files/it/web/api/crypto/index.html b/files/it/web/api/crypto/index.html
deleted file mode 100644
index 0add9721d2..0000000000
--- a/files/it/web/api/crypto/index.html
+++ /dev/null
@@ -1,68 +0,0 @@
----
-title: Crypto
-slug: Web/API/Crypto
-tags:
- - API
- - Interface
- - NeedsTranslation
- - Reference
- - TopicStub
- - Web Crypto API
-translation_of: Web/API/Crypto
----
-<p>{{APIRef("Web Crypto API")}}</p>
-
-<p>The <code><strong>Crypto</strong></code> interface represents basic cryptography features available in the current context. It allows access to a cryptographically strong random number generator and to cryptographic primitives.</p>
-
-<p>An object with this interface is available on Web context via the {{domxref("Window.crypto")}} property.</p>
-
-<h2 id="Properties">Properties</h2>
-
-<p><em>This interface implements properties defined on {{domxref("RandomSource")}}.</em></p>
-
-<dl>
- <dt>{{domxref("Crypto.subtle")}} {{experimental_inline}}{{readOnlyInline}}</dt>
- <dd>Returns a {{domxref("SubtleCrypto")}} object providing access to common cryptographic primitives, like hashing, signing, encryption or decryption.</dd>
-</dl>
-
-<h2 id="Methods">Methods</h2>
-
-<p><em>This interface implements methods defined on {{domxref("RandomSource")}}.</em></p>
-
-<dl>
- <dt>{{domxref("Crypto.getRandomValues()")}}</dt>
- <dd>Fills the passed {{ jsxref("TypedArray") }} with cryptographically sound random values.</dd>
-</dl>
-
-<h2 id="Specifications">Specifications</h2>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">Specification</th>
- <th scope="col">Status</th>
- <th scope="col">Comment</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{SpecName("Web Crypto API", "#crypto-interface", "Crypto")}}</td>
- <td>{{Spec2("Web Crypto API")}}</td>
- <td>Initial definition</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_Compatibility">Browser Compatibility</h2>
-
-<div>
-
-
-<p>{{Compat("api.Crypto")}}</p>
-</div>
-
-<h2 id="See_Also">See Also</h2>
-
-<ul>
- <li><a href="/en-US/docs/Components.utils.importGlobalProperties">Components.utils.importGlobalProperties</a></li>
-</ul>
diff --git a/files/it/web/api/crypto/subtle/index.html b/files/it/web/api/crypto/subtle/index.html
deleted file mode 100644
index ae850ea329..0000000000
--- a/files/it/web/api/crypto/subtle/index.html
+++ /dev/null
@@ -1,52 +0,0 @@
----
-title: Crypto.subtle
-slug: Web/API/Crypto/subtle
-tags:
- - API
- - Crittografia
- - D
- - Proprietà
- - Riferimenti
- - Sola lettura
- - Web Crypto API
-translation_of: Web/API/Crypto/subtle
----
-<p>{{APIRef("Web Crypto API")}}</p>
-
-<p>La proprietà in sola lettura <strong><code>Crypto.subtle</code></strong> restituisce un oggetto {{domxref("SubtleCrypto")}}, rendendo disponibili le funzioni crittografiche.</p>
-
-<h2 id="Syntax">Syntax</h2>
-
-<pre>var <em>crypto</em> = crypto.subtle;</pre>
-
-<h2 id="Specifications">Specifications</h2>
-
-<table class="standard-table">
- <tbody>
- <tr>
- <th scope="col">Specification</th>
- <th scope="col">Status</th>
- <th scope="col">Comment</th>
- </tr>
- <tr>
- <td>{{ SpecName('Web Crypto API', '#dfn-Crypto', 'Crypto.subtle') }}</td>
- <td>{{ Spec2('Web Crypto API') }}</td>
- <td>Definizione iniziale.</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_compatibility">Browser compatibility</h2>
-
-<div class="hidden">La tabella di compatiblità in questa pagina è generata dai dati disponibili. Se desideri contribuire, scarica il codice da <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> ed inviaci uan richiesta di allineamento.</div>
-
-<p>{{Compat("api.Crypto.subtle")}}</p>
-
-<h2 id="See_also">See also</h2>
-
-<ul>
- <li>{{domxref("Crypto")}}.</li>
- <li>{{domxref("SubtleCrypto")}}.</li>
- <li><a href="https://vibornoff.github.io/webcrypto-examples/index.html">Compatibilità</a>.</li>
- <li><a href="https://github.com/vibornoff/webcrypto-shim">Adeguamento per IE11 e Safari</a>.</li>
-</ul>