diff --git a/doc/api/crypto.md b/doc/api/crypto.md index 00a77f38a6d3b3..29815b576d55da 100644 --- a/doc/api/crypto.md +++ b/doc/api/crypto.md @@ -6057,6 +6057,9 @@ added: v15.6.0 +> Stability: 0 - Deprecated + * `engine` {string} * `flags` {crypto.constants} **Default:** `crypto.constants.ENGINE_METHOD_ALL` Load and set the `engine` for some or all OpenSSL functions (selected by flags). -Support for custom engines in OpenSSL is deprecated from OpenSSL 3. +Use of this API is deprecated because custom engine support has been deprecated +since OpenSSL 3. `engine` could be either an id or a path to the engine's shared library. diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md index 77f15f9b8dd002..67f6e5f273742b 100644 --- a/doc/api/deprecations.md +++ b/doc/api/deprecations.md @@ -4058,6 +4058,9 @@ that are shorter than the default authentication tag length (i.e., shorter than -Type: Documentation-only +Type: Runtime OpenSSL 3 has deprecated support for custom engines with a recommendation to switch to its new provider model. The `clientCertEngine` option for diff --git a/doc/api/https.md b/doc/api/https.md index 85e6a77c7ff262..634bba15d604d2 100644 --- a/doc/api/https.md +++ b/doc/api/https.md @@ -423,6 +423,9 @@ a `timeout` of 5 seconds.