diff options
Diffstat (limited to 'files/fr/web/api/subtlecrypto/index.md')
-rw-r--r-- | files/fr/web/api/subtlecrypto/index.md | 476 |
1 files changed, 230 insertions, 246 deletions
diff --git a/files/fr/web/api/subtlecrypto/index.md b/files/fr/web/api/subtlecrypto/index.md index b9cca851e9..dc6bb3bfe3 100644 --- a/files/fr/web/api/subtlecrypto/index.md +++ b/files/fr/web/api/subtlecrypto/index.md @@ -14,285 +14,269 @@ tags: - Web Crypto API translation_of: Web/API/SubtleCrypto --- -<div>{{APIRef("Web Crypto API")}}{{SecureContext_header}}</div> +{{APIRef("Web Crypto API")}}{{SecureContext_header}} -<p>The <code><strong>SubtleCrypto</strong></code> interface of the <a href="/en-US/docs/Web/API/Web_Crypto_API">Web Crypto API</a> provides a number of low-level cryptographic functions. Access to the features of <code>SubtleCrypto</code> is obtained through the {{domxref("Crypto.subtle", "subtle")}} property of the {{domxref("Crypto")}} object you get from {{domxref("Window.crypto")}}.</p> +The **`SubtleCrypto`** interface of the [Web Crypto API](/en-US/docs/Web/API/Web_Crypto_API) provides a number of low-level cryptographic functions. Access to the features of `SubtleCrypto` is obtained through the {{domxref("Crypto.subtle", "subtle")}} property of the {{domxref("Crypto")}} object you get from {{domxref("Window.crypto")}}. -<div class="warning"> -<p><strong>Warning:</strong> This API provides a number of low-level cryptographic primitives. It's very easy to misuse them, and the pitfalls involved can be very subtle.</p> +> **Attention :** This API provides a number of low-level cryptographic primitives. It's very easy to misuse them, and the pitfalls involved can be very subtle. +> +> Even assuming you use the basic cryptographic functions correctly, secure key management and overall security system design are extremely hard to get right, and are generally the domain of specialist security experts. +> +> Errors in security system design and implementation can make the security of the system completely ineffective. +> +> **If you're not sure you know what you are doing, you probably shouldn't be using this API.** -<p>Even assuming you use the basic cryptographic functions correctly, secure key management and overall security system design are extremely hard to get right, and are generally the domain of specialist security experts.</p> +## Properties -<p>Errors in security system design and implementation can make the security of the system completely ineffective.</p> +_This interface doesn't inherit any properties, as it has no parent interface._ -<p><strong>If you're not sure you know what you are doing, you probably shouldn't be using this API.</strong></p> -</div> +## Methods -<h2 id="Properties">Properties</h2> +_This interface doesn't inherit any methods, as it has no parent interface._ -<p><em>This interface doesn't inherit any properties, as it has no parent interface.</em></p> +- {{domxref("SubtleCrypto.encrypt()")}} + - : Returns a {{jsxref("Promise")}} that fufills with the encrypted data corresponding to the clear text, algorithm, and key given as parameters. +- {{domxref("SubtleCrypto.decrypt()")}} + - : Returns a {{jsxref("Promise")}} that fulfills with the clear data corresponding to the encrypted text, algorithm, and key given as parameters. +- {{domxref("SubtleCrypto.sign()")}} + - : Returns a {{jsxref("Promise")}} that fulfills with the signature corresponding to the text, algorithm, and key given as parameters. +- {{domxref("SubtleCrypto.verify()")}} + - : Returns a {{jsxref("Promise")}} that fulfills with a {{jsxref("Boolean")}} value indicating if the signature given as a parameter matches the text, algorithm, and key that are also given as parameters. +- {{domxref("SubtleCrypto.digest()")}} + - : Returns a {{jsxref("Promise")}} that fulfills with a digest generated from the algorithm and text given as parameters. +- {{domxref("SubtleCrypto.generateKey()")}} + - : Returns a {{jsxref("Promise")}} that fulfills with a newly-generated {{domxref("CryptoKey")}}, for symmetrical algorithms, or a {{domxref("CryptoKeyPair")}}, containing two newly generated keys, for asymmetrical algorithms. These will match the algorithm, usages, and extractability given as parameters. +- {{domxref("SubtleCrypto.deriveKey()")}} + - : Returns a {{jsxref("Promise")}} that fulfills with a newly generated {{domxref("CryptoKey")}} derived from the master key and specific algorithm given as parameters. +- {{domxref("SubtleCrypto.deriveBits()")}} + - : Returns a {{jsxref("Promise")}} that fulfills with a newly generated buffer of pseudo-random bits derived from the master key and specific algorithm given as parameters. +- {{domxref("SubtleCrypto.importKey()")}} + - : Returns a {{jsxref("Promise")}} that fulfills with a {{domxref("CryptoKey")}} corresponding to the format, the algorithm, raw key data, usages, and extractability given as parameters. +- {{domxref("SubtleCrypto.exportKey()")}} + - : Returns a {{jsxref("Promise")}} that fulfills with a buffer containing the key in the requested format. +- {{domxref("SubtleCrypto.wrapKey()")}} + - : Returns a {{jsxref("Promise")}} that fulfills with a wrapped symmetric key for usage (transfer and storage) in insecure environments. The wrapped key matches the format specified in the given parameters, and wrapping is done by the given wrapping key, using the specified algorithm. +- {{domxref("SubtleCrypto.unwrapKey()")}} + - : Returns a {{jsxref("Promise")}} that fulfills with a {{domxref("CryptoKey")}} corresponding to the wrapped key given in the parameter. -<h2 id="Methods">Methods</h2> +## Using SubtleCrypto -<p><em>This interface doesn't inherit any methods, as it has no parent interface.</em></p> +We can split the functions implemented by this API into two groups: cryptography functions and key management functions. -<dl> - <dt>{{domxref("SubtleCrypto.encrypt()")}}</dt> - <dd>Returns a {{jsxref("Promise")}} that fufills with the encrypted data corresponding to the clear text, algorithm, and key given as parameters.</dd> - <dt>{{domxref("SubtleCrypto.decrypt()")}}</dt> - <dd>Returns a {{jsxref("Promise")}} that fulfills with the clear data corresponding to the encrypted text, algorithm, and key given as parameters.</dd> - <dt>{{domxref("SubtleCrypto.sign()")}}</dt> - <dd>Returns a {{jsxref("Promise")}} that fulfills with the signature corresponding to the text, algorithm, and key given as parameters.</dd> - <dt>{{domxref("SubtleCrypto.verify()")}}</dt> - <dd>Returns a {{jsxref("Promise")}} that fulfills with a {{jsxref("Boolean")}} value indicating if the signature given as a parameter matches the text, algorithm, and key that are also given as parameters.</dd> - <dt>{{domxref("SubtleCrypto.digest()")}}</dt> - <dd>Returns a {{jsxref("Promise")}} that fulfills with a digest generated from the algorithm and text given as parameters.</dd> - <dt>{{domxref("SubtleCrypto.generateKey()")}}</dt> - <dd>Returns a {{jsxref("Promise")}} that fulfills with a newly-generated {{domxref("CryptoKey")}}, for symmetrical algorithms, or a {{domxref("CryptoKeyPair")}}, containing two newly generated keys, for asymmetrical algorithms. These will match the algorithm, usages, and extractability given as parameters.</dd> - <dt>{{domxref("SubtleCrypto.deriveKey()")}}</dt> - <dd>Returns a {{jsxref("Promise")}} that fulfills with a newly generated {{domxref("CryptoKey")}} derived from the master key and specific algorithm given as parameters.</dd> - <dt>{{domxref("SubtleCrypto.deriveBits()")}}</dt> - <dd>Returns a {{jsxref("Promise")}} that fulfills with a newly generated buffer of pseudo-random bits derived from the master key and specific algorithm given as parameters.</dd> - <dt>{{domxref("SubtleCrypto.importKey()")}}</dt> - <dd>Returns a {{jsxref("Promise")}} that fulfills with a {{domxref("CryptoKey")}} corresponding to the format, the algorithm, raw key data, usages, and extractability given as parameters.</dd> - <dt>{{domxref("SubtleCrypto.exportKey()")}}</dt> - <dd>Returns a {{jsxref("Promise")}} that fulfills with a buffer containing the key in the requested format.</dd> - <dt>{{domxref("SubtleCrypto.wrapKey()")}}</dt> - <dd>Returns a {{jsxref("Promise")}} that fulfills with a wrapped symmetric key for usage (transfer and storage) in insecure environments. The wrapped key matches the format specified in the given parameters, and wrapping is done by the given wrapping key, using the specified algorithm.</dd> - <dt>{{domxref("SubtleCrypto.unwrapKey()")}}</dt> - <dd>Returns a {{jsxref("Promise")}} that fulfills with a {{domxref("CryptoKey")}} corresponding to the wrapped key given in the parameter.</dd> -</dl> +### Cryptography functions -<h2 id="Using_SubtleCrypto">Using SubtleCrypto</h2> +These are the functions you can use to implement security features such as privacy and authentication in a system. The `SubtleCrypto` API provides the following cryptography functions: -<p>We can split the functions implemented by this API into two groups: cryptography functions and key management functions.</p> +\* {{DOMxRef("SubtleCrypto.sign","sign()")}} and {{DOMxRef("SubtleCrypto.verify","verify()")}}: create and verify digital signatures. +\* {{DOMxRef("SubtleCrypto.encrypt","encrypt()")}} and {{DOMxRef("SubtleCrypto.decrypt","decrypt()")}}: encrypt and decrypt data. \* {{DOMxRef("SubtleCrypto.digest","digest()")}}: create a fixed-length, collision-resistant digest of some data. -<h3 id="Cryptography_functions">Cryptography functions</h3> +### Key management functions -<p>These are the functions you can use to implement security features such as privacy and authentication in a system. The <code>SubtleCrypto</code> API provides the following cryptography functions:</p> +Except for {{DOMxRef("SubtleCrypto.digest","digest()")}}, all the cryptography functions in the API use cryptographic keys. In the `SubtleCrypto` API a cryptographic key is represented using a {{DOMxRef("CryptoKey","CryptoKey")}} object. To perform operations like signing and encrypting, you pass a {{DOMxRef("CryptoKey","CryptoKey")}} object into the {{DOMxRef("SubtleCrypto.sign","sign()")}} or {{DOMxRef("SubtleCrypto.encrypt","encrypt()")}} function. -<p>* {{DOMxRef("SubtleCrypto.sign","sign()")}} and {{DOMxRef("SubtleCrypto.verify","verify()")}}: create and verify digital signatures.<br> - * {{DOMxRef("SubtleCrypto.encrypt","encrypt()")}} and {{DOMxRef("SubtleCrypto.decrypt","decrypt()")}}: encrypt and decrypt data.<br> - * {{DOMxRef("SubtleCrypto.digest","digest()")}}: create a fixed-length, collision-resistant digest of some data.</p> +#### Generating and deriving keys -<h3 id="Key_management_functions">Key management functions</h3> +The {{DOMxRef("SubtleCrypto.generateKey","generateKey()")}} and {{DOMxRef("SubtleCrypto.deriveKey","deriveKey()")}} functions both create a new {{DOMxRef("CryptoKey")}} object. -<p>Except for {{DOMxRef("SubtleCrypto.digest","digest()")}}, all the cryptography functions in the API use cryptographic keys. In the <code>SubtleCrypto</code> API a cryptographic key is represented using a {{DOMxRef("CryptoKey","CryptoKey")}} object. To perform operations like signing and encrypting, you pass a {{DOMxRef("CryptoKey","CryptoKey")}} object into the {{DOMxRef("SubtleCrypto.sign","sign()")}} or {{DOMxRef("SubtleCrypto.encrypt","encrypt()")}} function.</p> +The difference is that `generateKey()` will generate a new distinct key value each time you call it, while `deriveKey()` derives a key from some initial keying material. If you provide the same keying material to two separate calls to `deriveKey()`, you will get two `CryptoKey` objects that have the same underlying value. This is useful if, for example, you want to derive an encryption key from a password and later derive the same key from the same password to decrypt the data. -<h4 id="Generating_and_deriving_keys">Generating and deriving keys</h4> +#### Importing and exporting keys -<p>The {{DOMxRef("SubtleCrypto.generateKey","generateKey()")}} and {{DOMxRef("SubtleCrypto.deriveKey","deriveKey()")}} functions both create a new {{DOMxRef("CryptoKey")}} object.</p> +To make keys available outside your app, you need to export the key, and that's what {{DOMxRef("SubtleCrypto.exportKey","exportKey()")}} is for. You can choose one of a number of export formats. -<p>The difference is that <code>generateKey()</code> will generate a new distinct key value each time you call it, while <code>deriveKey()</code> derives a key from some initial keying material. If you provide the same keying material to two separate calls to <code>deriveKey()</code>, you will get two <code>CryptoKey</code> objects that have the same underlying value. This is useful if, for example, you want to derive an encryption key from a password and later derive the same key from the same password to decrypt the data.</p> +The inverse of `exportKey()` is {{DOMxRef("SubtleCrypto.importKey","importKey()")}}. You can import keys from other systems, and support for standard formats like [PKCS #8](https://tools.ietf.org/html/rfc5208) and [JSON Web Key](https://tools.ietf.org/html/rfc7517) helps you do this. The `exportKey()` function exports the key in an unencrypted format. -<h4 id="Importing_and_exporting_keys">Importing and exporting keys</h4> +If the key is sensitive you should use {{DOMxRef("SubtleCrypto.wrapKey","wrapKey()")}}, which exports the key and then encrypts it using another key; the API calls a "key-wrapping key". -<p>To make keys available outside your app, you need to export the key, and that's what {{DOMxRef("SubtleCrypto.exportKey","exportKey()")}} is for. You can choose one of a number of export formats.</p> +The inverse of `wrapKey()` is {{DOMxRef("SubtleCrypto.unwrapKey","unwrapKey()")}}, which decrypts then imports the key. -<p>The inverse of <code>exportKey()</code> is {{DOMxRef("SubtleCrypto.importKey","importKey()")}}. You can import keys from other systems, and support for standard formats like <a href="https://tools.ietf.org/html/rfc5208">PKCS #8</a> and <a href="https://tools.ietf.org/html/rfc7517">JSON Web Key</a> helps you do this. The <code>exportKey()</code> function exports the key in an unencrypted format.</p> +#### Storing keys -<p>If the key is sensitive you should use {{DOMxRef("SubtleCrypto.wrapKey","wrapKey()")}}, which exports the key and then encrypts it using another key; the API calls a "key-wrapping key".</p> +`CryptoKey` objects can be stored using the [structured clone algorithm](/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm), meaning that you can store and retrieve them using standard web storage APIs. The specification expects that most developers will use the [IndexedDB API](/en-US/docs/Web/API/IndexedDB_API) to store `CryptoKey` objects. -<p>The inverse of <code>wrapKey()</code> is {{DOMxRef("SubtleCrypto.unwrapKey","unwrapKey()")}}, which decrypts then imports the key.</p> +### Supported algorithms -<h4 id="Storing_keys">Storing keys</h4> +The cryptographic functions provided by the Web Crypto API can be performed by one or more different _cryptographic algorithms_: the `algorithm` argument to the function indicates which algorithm to use. Some algorithms need extra parameters: in these cases the `algorithm` argument is a dictionary object that includes the extra parameters. -<p><code>CryptoKey</code> objects can be stored using the <a href="/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm">structured clone algorithm</a>, meaning that you can store and retrieve them using standard web storage APIs. The specification expects that most developers will use the <a href="/en-US/docs/Web/API/IndexedDB_API">IndexedDB API</a> to store <code>CryptoKey</code> objects.</p> - -<h3 id="Supported_algorithms">Supported algorithms</h3> - -<p>The cryptographic functions provided by the Web Crypto API can be performed by one or more different <em>cryptographic algorithms</em>: the <code>algorithm</code> argument to the function indicates which algorithm to use. Some algorithms need extra parameters: in these cases the <code>algorithm</code> argument is a dictionary object that includes the extra parameters.</p> - -<p>The table below summarises which algorithms are suitable for which cryptographic operations:</p> - -<table class="standard-table"> - <thead> - <tr> - <th scope="row"></th> - <th scope="col"> - <p><a href="/en-US/docs/Web/API/SubtleCrypto/sign">sign()</a></p> - - <p><a href="/en-US/docs/Web/API/SubtleCrypto/verify">verify()</a></p> - </th> - <th scope="col"> - <p><a href="/en-US/docs/Web/API/SubtleCrypto/encrypt">encrypt()</a></p> - - <p><a href="/en-US/docs/Web/API/SubtleCrypto/decrypt">decrypt()</a></p> - </th> - <th scope="col"><a href="/en-US/docs/Web/API/SubtleCrypto/digest">digest()</a></th> - <th scope="col"> - <p><a href="/en-US/docs/Web/API/SubtleCrypto/deriveBits">deriveBits()</a></p> - - <p><a href="/en-US/docs/Web/API/SubtleCrypto/deriveKey">deriveKey()</a></p> - </th> - <th scope="col"> - <p><a href="/en-US/docs/Web/API/SubtleCrypto/wrapKey">wrapKey()</a></p> - - <p><a href="/en-US/docs/Web/API/SubtleCrypto/unwrapKey">unwrapKey()</a></p> - </th> - </tr> - </thead> - <tbody> - <tr> - <th scope="row">RSASSA-PKCS1-v1_5</th> - <td>✓</td> - <td></td> - <td></td> - <td></td> - <td></td> - </tr> - <tr> - <th scope="row">RSA-PSS</th> - <td>✓</td> - <td></td> - <td></td> - <td></td> - <td></td> - </tr> - <tr> - <th scope="row">ECDSA</th> - <td>✓</td> - <td></td> - <td></td> - <td></td> - <td></td> - </tr> - <tr> - <th scope="row">HMAC</th> - <td>✓</td> - <td></td> - <td></td> - <td></td> - <td></td> - </tr> - <tr> - <th scope="row">RSA-OAEP</th> - <td></td> - <td>✓</td> - <td></td> - <td></td> - <td>✓</td> - </tr> - <tr> - <th scope="row">AES-CTR</th> - <td></td> - <td>✓</td> - <td></td> - <td></td> - <td>✓</td> - </tr> - <tr> - <th scope="row">AES-CBC</th> - <td></td> - <td>✓</td> - <td></td> - <td></td> - <td>✓</td> - </tr> - <tr> - <th scope="row">AES-GCM</th> - <td></td> - <td>✓</td> - <td></td> - <td></td> - <td>✓</td> - </tr> - <tr> - <th scope="row">SHA-1</th> - <td></td> - <td></td> - <td>✓</td> - <td></td> - <td></td> - </tr> - <tr> - <th scope="row">SHA-256</th> - <td></td> - <td></td> - <td>✓</td> - <td></td> - <td></td> - </tr> - <tr> - <th scope="row">SHA-384</th> - <td></td> - <td></td> - <td>✓</td> - <td></td> - <td></td> - </tr> - <tr> - <th scope="row">SHA-512</th> - <td></td> - <td></td> - <td>✓</td> - <td></td> - <td></td> - </tr> - <tr> - <th scope="row">ECDH</th> - <td></td> - <td></td> - <td></td> - <td>✓</td> - <td></td> - </tr> - <tr> - <th scope="row">HKDF</th> - <td></td> - <td></td> - <td></td> - <td>✓</td> - <td></td> - </tr> - <tr> - <th scope="row">PBKDF2</th> - <td></td> - <td></td> - <td></td> - <td>✓</td> - <td></td> - </tr> - <tr> - <th scope="row">AES-KW</th> - <td></td> - <td></td> - <td></td> - <td></td> - <td>✓</td> - </tr> - </tbody> -</table> - -<h2 id="Specifications">Specifications</h2> +The table below summarises which algorithms are suitable for which cryptographic operations: <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', '#subtlecrypto-interface', 'SubtleCrypto') }}</td> - <td>{{ Spec2('Web Crypto API') }}</td> - <td>Initial definition.</td> - </tr> - </tbody> + <thead> + <tr> + <th scope="row"></th> + <th scope="col"> + <p><a href="/en-US/docs/Web/API/SubtleCrypto/sign">sign()</a></p> + <p><a href="/en-US/docs/Web/API/SubtleCrypto/verify">verify()</a></p> + </th> + <th scope="col"> + <p><a href="/en-US/docs/Web/API/SubtleCrypto/encrypt">encrypt()</a></p> + <p><a href="/en-US/docs/Web/API/SubtleCrypto/decrypt">decrypt()</a></p> + </th> + <th scope="col"> + <a href="/en-US/docs/Web/API/SubtleCrypto/digest">digest()</a> + </th> + <th scope="col"> + <p> + <a href="/en-US/docs/Web/API/SubtleCrypto/deriveBits">deriveBits()</a> + </p> + <p> + <a href="/en-US/docs/Web/API/SubtleCrypto/deriveKey">deriveKey()</a> + </p> + </th> + <th scope="col"> + <p><a href="/en-US/docs/Web/API/SubtleCrypto/wrapKey">wrapKey()</a></p> + <p> + <a href="/en-US/docs/Web/API/SubtleCrypto/unwrapKey">unwrapKey()</a> + </p> + </th> + </tr> + </thead> + <tbody> + <tr> + <th scope="row">RSASSA-PKCS1-v1_5</th> + <td>✓</td> + <td></td> + <td></td> + <td></td> + <td></td> + </tr> + <tr> + <th scope="row">RSA-PSS</th> + <td>✓</td> + <td></td> + <td></td> + <td></td> + <td></td> + </tr> + <tr> + <th scope="row">ECDSA</th> + <td>✓</td> + <td></td> + <td></td> + <td></td> + <td></td> + </tr> + <tr> + <th scope="row">HMAC</th> + <td>✓</td> + <td></td> + <td></td> + <td></td> + <td></td> + </tr> + <tr> + <th scope="row">RSA-OAEP</th> + <td></td> + <td>✓</td> + <td></td> + <td></td> + <td>✓</td> + </tr> + <tr> + <th scope="row">AES-CTR</th> + <td></td> + <td>✓</td> + <td></td> + <td></td> + <td>✓</td> + </tr> + <tr> + <th scope="row">AES-CBC</th> + <td></td> + <td>✓</td> + <td></td> + <td></td> + <td>✓</td> + </tr> + <tr> + <th scope="row">AES-GCM</th> + <td></td> + <td>✓</td> + <td></td> + <td></td> + <td>✓</td> + </tr> + <tr> + <th scope="row">SHA-1</th> + <td></td> + <td></td> + <td>✓</td> + <td></td> + <td></td> + </tr> + <tr> + <th scope="row">SHA-256</th> + <td></td> + <td></td> + <td>✓</td> + <td></td> + <td></td> + </tr> + <tr> + <th scope="row">SHA-384</th> + <td></td> + <td></td> + <td>✓</td> + <td></td> + <td></td> + </tr> + <tr> + <th scope="row">SHA-512</th> + <td></td> + <td></td> + <td>✓</td> + <td></td> + <td></td> + </tr> + <tr> + <th scope="row">ECDH</th> + <td></td> + <td></td> + <td></td> + <td>✓</td> + <td></td> + </tr> + <tr> + <th scope="row">HKDF</th> + <td></td> + <td></td> + <td></td> + <td>✓</td> + <td></td> + </tr> + <tr> + <th scope="row">PBKDF2</th> + <td></td> + <td></td> + <td></td> + <td>✓</td> + <td></td> + </tr> + <tr> + <th scope="row">AES-KW</th> + <td></td> + <td></td> + <td></td> + <td></td> + <td>✓</td> + </tr> + </tbody> </table> -<h2 id="Browser_compatibility">Browser compatibility</h2> +## Specifications +| Specification | Status | Comment | +| ---------------------------------------------------------------------------------------------------- | ---------------------------------------- | ------------------- | +| {{ SpecName('Web Crypto API', '#subtlecrypto-interface', 'SubtleCrypto') }} | {{ Spec2('Web Crypto API') }} | Initial definition. | +## Browser compatibility -<p>{{Compat("api.SubtleCrypto")}}</p> +{{Compat("api.SubtleCrypto")}} -<h2 id="See_also">See also</h2> +## See also -<ul> - <li><a href="/en-US/docs/Web/API/Web_Crypto_API">Web Crypto API</a></li> - <li><a href="/en-US/docs/Web/Security">Web security</a></li> - <li><a href="/en-US/docs/Web/Privacy">Privacy, permissions, and information security</a></li> - <li>{{domxref("Crypto")}} and {{domxref("Crypto.subtle")}}.</li> - <li><a href="https://www.crypto101.io/">Crypto 101</a>: an introductory course on cryptography.</li> -</ul> +- [Web Crypto API](/en-US/docs/Web/API/Web_Crypto_API) +- [Web security](/en-US/docs/Web/Security) +- [Privacy, permissions, and information security](/en-US/docs/Web/Privacy) +- {{domxref("Crypto")}} and {{domxref("Crypto.subtle")}}. +- [Crypto 101](https://www.crypto101.io/): an introductory course on cryptography. |