diff --git a/docs/providers/webcrypto.md b/docs/providers/webcrypto.md index 7fc4a11b..b758cbe1 100644 --- a/docs/providers/webcrypto.md +++ b/docs/providers/webcrypto.md @@ -9,6 +9,7 @@ For supported targets and algorithms, please consult [Supported primitives secti * only `suspend` functions are supported, because `WebCrypto` API is async by default * AES.* (browser only): may not support `192 bit` keys * AES.CBC: only `padding=true` is supported +* EdDSA/XDH were added later to WebCrypto and might not be available in all browsers (https://github.com/w3c/webcrypto/pull/362) ## Example @@ -32,3 +33,6 @@ dependencies { [WebCrypto]: https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_API [Supported primitives section]: index.md#supported-primitives + +[RFC 8032]: https://www.rfc-editor.org/rfc/rfc8032 +[RFC 7748]: https://www.rfc-editor.org/rfc/rfc7748