From 8960a63312c684aa9c840a9f9c06fecbfa04427e Mon Sep 17 00:00:00 2001 From: Mateusz Krawczuk Date: Thu, 25 Jun 2020 15:50:17 +0200 Subject: [PATCH] doc: add a reference to the list of OpenSSL flags. Some of the SSL_OP_* constants are missing description in the documentation. Instead of rewriting the description from OpenSSL's wiki, I have decided to put a link to a detailed list in the 'OpenSSL Options' section. I see no point of doing both - adding a reference to the wiki and adding constant descriptions - but I might do if presented with convincing arguments. This is a follow-up to #33929. PR-URL: https://github.com/nodejs/node/pull/34050 Reviewed-By: James M Snell --- doc/api/crypto.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/api/crypto.md b/doc/api/crypto.md index e087c12479dc25..b804b9bb4be909 100644 --- a/doc/api/crypto.md +++ b/doc/api/crypto.md @@ -3358,6 +3358,8 @@ the `crypto`, `tls`, and `https` modules and are generally specific to OpenSSL. ### Other OpenSSL constants +See the [list of SSL OP Flags][] for details. + @@ -3525,3 +3527,4 @@ the `crypto`, `tls`, and `https` modules and are generally specific to OpenSSL. [scrypt]: https://en.wikipedia.org/wiki/Scrypt [stream-writable-write]: stream.html#stream_writable_write_chunk_encoding_callback [stream]: stream.html +[list of SSL OP Flags]: wiki.openssl.org/index.php/List_of_SSL_OP_Flags#Table_of_Options
Constant