diff options
Diffstat (limited to 'files/fr/web/api/crypto_property/index.md')
-rw-r--r-- | files/fr/web/api/crypto_property/index.md | 42 |
1 files changed, 13 insertions, 29 deletions
diff --git a/files/fr/web/api/crypto_property/index.md b/files/fr/web/api/crypto_property/index.md index 80365515c5..2f968ce1ff 100644 --- a/files/fr/web/api/crypto_property/index.md +++ b/files/fr/web/api/crypto_property/index.md @@ -4,41 +4,25 @@ slug: Web/API/crypto_property translation_of: Web/API/Window/crypto original_slug: Web/API/Window/crypto --- -<p>{{APIRef}}</p> +{{APIRef}} -<p>La propriété, en lecture seule, {{domxref("Window.crypto")}} retourne l'objet {{domxref("Crypto")}} associé à l'objet global. Cet objet permet aux pages web d'avoir un accès à certains services liés à cryptographie.</p> +La propriété, en lecture seule, {{domxref("Window.crypto")}} retourne l'objet {{domxref("Crypto")}} associé à l'objet global. Cet objet permet aux pages web d'avoir un accès à certains services liés à cryptographie. -<h2 id="Syntaxe">Syntaxe</h2> +## Syntaxe -<pre class="syntaxbox">var <em>cryptoObj</em> = window.crypto || window.msCrypto; // pour IE 11 -</pre> + var cryptoObj = window.crypto || window.msCrypto; // pour IE 11 -<h2 id="Specification">Spécifications</h2> +## Spécifications -<table class="standard-table"> - <thead> - <tr> - <th scope="col">Spécification</th> - <th scope="col">Statut</th> - <th scope="col">Commentaire</th> - </tr> - </thead> - <tbody> - <tr> - <td>{{SpecName("Web Crypto API", "#dfn-GlobalCrypto", "Window.crypto")}}</td> - <td>{{Spec2("Web Crypto API")}}</td> - <td>Définition initiale</td> - </tr> - </tbody> -</table> +| Spécification | Statut | Commentaire | +| -------------------------------------------------------------------------------------------- | ------------------------------------ | ------------------- | +| {{SpecName("Web Crypto API", "#dfn-GlobalCrypto", "Window.crypto")}} | {{Spec2("Web Crypto API")}} | Définition initiale | -<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2> +## Compatibilité des navigateurs -<p>{{Compat("api.Window.crypto")}}</p> +{{Compat("api.Window.crypto")}} -<h2 id="See_also">Voir aussi</h2> +## Voir aussi -<ul> - <li>L'objet global {{domxref("Window")}}</li> - <li>L'interface {{domxref("Crypto")}}</li> -</ul> +- L'objet global {{domxref("Window")}} +- L'interface {{domxref("Crypto")}} |