Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Nießen <tniessen@tnie.de>2022-03-08 20:33:27 +0300
committerGitHub <noreply@github.com>2022-03-08 20:33:27 +0300
commit9412441da01d14167a42557e8fe7e42cfc4309a2 (patch)
treead046d123f09a9ad12c81ef28eba2802e4079b00 /doc/api/crypto.md
parent24fc302eadf64d2518733a2ae40355916e6990f7 (diff)
doc: remove refs to old OpenSSL list-* commands
The last release line that did not support the new openssl list command was OpenSSL 1.1.0, which reached its end-of-life status years ago. PR-URL: https://github.com/nodejs/node/pull/42235 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'doc/api/crypto.md')
-rw-r--r--doc/api/crypto.md15
1 files changed, 5 insertions, 10 deletions
diff --git a/doc/api/crypto.md b/doc/api/crypto.md
index 5721f8df30f..be386dafef8 100644
--- a/doc/api/crypto.md
+++ b/doc/api/crypto.md
@@ -2970,8 +2970,7 @@ option is not required but can be used to set the length of the authentication
tag that will be returned by `getAuthTag()` and defaults to 16 bytes.
The `algorithm` is dependent on OpenSSL, examples are `'aes192'`, etc. On
-recent OpenSSL releases, `openssl list -cipher-algorithms`
-(`openssl list-cipher-algorithms` for older versions of OpenSSL) will
+recent OpenSSL releases, `openssl list -cipher-algorithms` will
display the available cipher algorithms.
The `password` is used to derive the cipher key and initialization vector (IV).
@@ -3041,8 +3040,7 @@ option is not required but can be used to set the length of the authentication
tag that will be returned by `getAuthTag()` and defaults to 16 bytes.
The `algorithm` is dependent on OpenSSL, examples are `'aes192'`, etc. On
-recent OpenSSL releases, `openssl list -cipher-algorithms`
-(`openssl list-cipher-algorithms` for older versions of OpenSSL) will
+recent OpenSSL releases, `openssl list -cipher-algorithms` will
display the available cipher algorithms.
The `key` is the raw key used by the `algorithm` and `iv` is an
@@ -3142,8 +3140,7 @@ option is not required but can be used to restrict accepted authentication tags
to those with the specified length.
The `algorithm` is dependent on OpenSSL, examples are `'aes192'`, etc. On
-recent OpenSSL releases, `openssl list -cipher-algorithms`
-(`openssl list-cipher-algorithms` for older versions of OpenSSL) will
+recent OpenSSL releases, `openssl list -cipher-algorithms` will
display the available cipher algorithms.
The `key` is the raw key used by the `algorithm` and `iv` is an
@@ -3259,8 +3256,7 @@ can be used to specify the desired output length in bytes.
The `algorithm` is dependent on the available algorithms supported by the
version of OpenSSL on the platform. Examples are `'sha256'`, `'sha512'`, etc.
-On recent releases of OpenSSL, `openssl list -digest-algorithms`
-(`openssl list-message-digest-algorithms` for older versions of OpenSSL) will
+On recent releases of OpenSSL, `openssl list -digest-algorithms` will
display the available digest algorithms.
Example: generating the sha256 sum of a file
@@ -3343,8 +3339,7 @@ Optional `options` argument controls stream behavior.
The `algorithm` is dependent on the available algorithms supported by the
version of OpenSSL on the platform. Examples are `'sha256'`, `'sha512'`, etc.
-On recent releases of OpenSSL, `openssl list -digest-algorithms`
-(`openssl list-message-digest-algorithms` for older versions of OpenSSL) will
+On recent releases of OpenSSL, `openssl list -digest-algorithms` will
display the available digest algorithms.
The `key` is the HMAC key used to generate the cryptographic HMAC hash. If it is