From 155880021747df66cee600aacbc3303708cb050b 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 28483b61ab6b71..17c2e26d9569d1 100644 --- a/doc/api/crypto.md +++ b/doc/api/crypto.md @@ -3382,6 +3382,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. + @@ -3550,3 +3552,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