-
Notifications
You must be signed in to change notification settings - Fork 30.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
doc: updates crypto doc with openssl list -cipher-algorithms #20502
Closed
shobhitchittora
wants to merge
2
commits into
nodejs:master
from
shobhitchittora:update-doc-openssl-list-cipher
Closed
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1346,8 +1346,9 @@ 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` will display the | ||
available cipher algorithms. | ||
recent OpenSSL releases, `openssl list -cipher-algorithms` | ||
(`openssl list-cipher-algorithms` for older versions of OpenSSL) will | ||
display the available cipher algorithms. | ||
|
||
The `password` is used to derive the cipher key and initialization vector (IV). | ||
The value must be either a `'latin1'` encoded string, a [`Buffer`][], a | ||
|
@@ -1399,8 +1400,9 @@ 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` will display the | ||
available cipher algorithms. | ||
recent OpenSSL releases, `openssl list -cipher-algorithms` | ||
(`openssl list-cipher-algorithms` for older versions of OpenSSL) will | ||
display the available cipher algorithms. | ||
|
||
The `key` is the raw key used by the `algorithm` and `iv` is an | ||
[initialization vector][]. Both arguments must be `'utf8'` encoded strings, | ||
|
@@ -1496,8 +1498,9 @@ 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` will display the | ||
available cipher algorithms. | ||
recent OpenSSL releases, `openssl list -cipher-algorithms` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Extra space after the comma) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. fixed. |
||
(`openssl list-cipher-algorithms` for older versions of OpenSSL) will | ||
display the available cipher algorithms. | ||
|
||
The `key` is the raw key used by the `algorithm` and `iv` is an | ||
[initialization vector][]. Both arguments must be `'utf8'` encoded strings, | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Extra space after the backtick here and in two other same lines)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed.