Skip to content
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 update - legacy provider's cipher algorithms #15197

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions doc/man3/EVP_des_cbc.pod
Expand Up @@ -54,6 +54,10 @@ EVP_des_ofb()
DES in CBC, ECB, CFB with 64-bit shift, CFB with 1-bit shift, CFB with 8-bit
shift and OFB modes.

None of these algorithms are provided by the OpenSSL default provider.
To use them it is necessary to load either the OpenSSL legacy provider or another
implementation.

=item EVP_des_ede(),
EVP_des_ede_cbc(),
EVP_des_ede_cfb(),
Expand Down
4 changes: 4 additions & 0 deletions doc/man3/EVP_desx_cbc.pod
Expand Up @@ -23,6 +23,10 @@ All modes below use a key length of 128 bits and acts on blocks of 128-bits.

The DES-X algorithm in CBC mode.

This algorithm is not provided by the OpenSSL default provider.
To use it is necessary to load either the OpenSSL legacy provider or another
implementation.

=back

=head1 RETURN VALUES
Expand Down
26 changes: 26 additions & 0 deletions doc/man7/OSSL_PROVIDER-legacy.pod
Expand Up @@ -52,6 +52,32 @@ The OpenSSL legacy provider supports these operations and algorithms:

=back

=head2 Symmetric Ciphers

Not all of these symmetric cipher algorithms are enabled by default.

=over 4

=item Blowfish

=item CAST

=item DES

=item IDEA

=item RC2

=item RC4

=item RC5

Disabled by default. Use I<enable-rc5> config option to enable.

=item SEED

=back

=begin comment

When algorithms for other operations start appearing, the
Expand Down