diff --git a/web-crypto/README.md b/web-crypto/README.md index 2c78bd92..fafdddc3 100644 --- a/web-crypto/README.md +++ b/web-crypto/README.md @@ -2,6 +2,18 @@ Examples of how to use the [Web Crypto API](https://developer.mozilla.org/docs/Web/API/Web_Crypto_API). -* [sign/verify](sign-verify/index.html): examples showing how to use the [`SubtleCrypto.sign()`](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/sign) and [`SubtleCrypto.verify()`](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/verify) APIs. +* [derive-bits](derive-bits/index.html): examples showing how to use the [`SubtleCrypto.deriveBits()`](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/deriveBits) API. + +* [derive-key](derive-key/index.html): examples showing how to use the [`SubtleCrypto.deriveKey()`](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/deriveKey) API. * [encrypt/decrypt](encrypt-decrypt/index.html): examples showing how to use the [`SubtleCrypto.encrypt()`](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/encrypt) and [`SubtleCrypto.decrypt()`](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/decrypt) APIs. + +* [export-key](export-key/index.html): examples showing how to use the [`SubtleCrypto.exportKey()`](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/exportKey) API. + +* [import-key](import-key/index.html): examples showing how to use the [`SubtleCrypto.importKey()`](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/importKey) API. + +* [sign/verify](sign-verify/index.html): examples showing how to use the [`SubtleCrypto.sign()`](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/sign) and [`SubtleCrypto.verify()`](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/verify) APIs. + +* [unwrap-key](unwrap-key/index.html): examples showing how to use the [`SubtleCrypto.unwrapKey()`](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/unwrapKey) API. + +* [wrap-key](wrap-key/index.html): examples showing how to use the [`SubtleCrypto.wrapKey()`](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/wrapKey) API.