diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:52 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:52 -0500 |
commit | 074785cea106179cb3305637055ab0a009ca74f2 (patch) | |
tree | e6ae371cccd642aa2b67f39752a2cdf1fd4eb040 /files/pt-br/web/api/crypto | |
parent | da78a9e329e272dedb2400b79a3bdeebff387d47 (diff) | |
download | translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.gz translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.bz2 translated-content-074785cea106179cb3305637055ab0a009ca74f2.zip |
initial commit
Diffstat (limited to 'files/pt-br/web/api/crypto')
-rw-r--r-- | files/pt-br/web/api/crypto/index.html | 72 | ||||
-rw-r--r-- | files/pt-br/web/api/crypto/subtle/index.html | 51 |
2 files changed, 123 insertions, 0 deletions
diff --git a/files/pt-br/web/api/crypto/index.html b/files/pt-br/web/api/crypto/index.html new file mode 100644 index 0000000000..cc9a0214d1 --- /dev/null +++ b/files/pt-br/web/api/crypto/index.html @@ -0,0 +1,72 @@ +--- +title: Crypto +slug: Web/API/Crypto +tags: + - API + - Interface + - Referencia + - Web Crypto API +translation_of: Web/API/Crypto +--- +<p>{{APIRef("Web Crypto API")}}</p> + +<p>A interface <code><strong>Crypto</strong></code> apresenta características de criptografia básica disponíveis no contexto atual. Isto permite acesso a um forte gerador criptográfico de números aleatórios e a criptografias primitivas.</p> + +<p>Um objeto com essa interface está disponível no contexto web via propriedade {{domxref("Window.crypto")}} .</p> + +<h2 id="Propriedades">Propriedades</h2> + +<p><em>Esta interface implementa propriedades definidas em {{domxref("RandomSource")}}.</em></p> + +<dl> + <dt>{{domxref("Crypto.subtle")}} {{experimental_inline}}{{readOnlyInline}}</dt> + <dd>Retorna um objeto {{domxref("SubtleCrypto")}} provendo acesso a criptografias primitivas comuns, como hashing, signing, encryption ou decryption.</dd> +</dl> + +<h2 id="Métodos">Métodos</h2> + +<p><em>Esta interface implementa métodos definidos em {{domxref("RandomSource")}}.</em></p> + +<dl> + <dt>{{domxref("RandomSource.getRandomValues()")}}</dt> + <dd>Preenche a {{ jsxref("TypedArray") }} com valores criptografados aleatórios.</dd> +</dl> + +<h2 id="Especificações">Especificações</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Especificação</th> + <th scope="col">Status</th> + <th scope="col">Comentário</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName("Web Crypto API", "#crypto-interface", "Crypto")}}</td> + <td>{{Spec2("Web Crypto API")}}</td> + <td>Definição inicial.</td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilidade_de_Browser">Compatibilidade de Browser</h2> + +<div class="hidden"> +<p>The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a>and send us a pull request.</p> +</div> + +<p>{{Compat("api.Crypto")}}</p> + +<div id="compat-desktop"> </div> + +<h2 id="Veja_também">Veja também</h2> + +<ul> + <li><a href="/en-US/docs/Components.utils.importGlobalProperties">Components.utils.importGlobalProperties</a></li> +</ul> + +<h2 id="Dicionário">Dicionário:</h2> + +<p>"Key" = "Chave"</p> diff --git a/files/pt-br/web/api/crypto/subtle/index.html b/files/pt-br/web/api/crypto/subtle/index.html new file mode 100644 index 0000000000..caf7e0d4f0 --- /dev/null +++ b/files/pt-br/web/api/crypto/subtle/index.html @@ -0,0 +1,51 @@ +--- +title: Crypto.subtle +slug: Web/API/Crypto/subtle +tags: + - API + - Criptografía + - Propriedade + - Read-only + - Referencia + - Web Crypto API +translation_of: Web/API/Crypto/subtle +--- +<p>{{APIRef("Web Crypto API")}}</p> + +<p>A prorpiedade <strong><code>Crypto.subtle</code></strong> de apenas leitura retorna como objeto {{domxref("SubtleCrypto")}} permitindo exercer operações de criptografia.</p> + +<h2 id="Sintaxe">Sintaxe</h2> + +<pre>var <em>crypto</em> = crypto.subtle;</pre> + +<h2 id="Especificações">Especificações</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Especificação</th> + <th scope="col">Status</th> + <th scope="col">Comentário</th> + </tr> + <tr> + <td>{{ SpecName('Web Crypto API', '#dfn-Crypto', 'Crypto.subtle') }}</td> + <td>{{ Spec2('Web Crypto API') }}</td> + <td>Definição inicial.</td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilidade_de_Browser">Compatibilidade de Browser</h2> + + + +<p>{{Compat("api.Crypto.subtle")}}</p> + +<h2 id="Veja_também">Veja também</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> |