Specifically, refer from the deprecated tools to the pkey equivalents.
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
(Merged from https://github.com/openssl/openssl/pull/11113)
=head1 EXAMPLES
+Examples equivalent to these can be found in the documentation for the
+non-deprecated L<openssl-pkey(1)> command.
+
To remove the pass phrase on a DSA private key:
openssl dsa -in key.pem -out keyout.pem
=head1 EXAMPLES
+Examples equivalent to these can be found in the documentation for the
+non-deprecated L<openssl-pkey(1)> command.
+
To encrypt a private key using triple DES:
openssl ec -in key.pem -des3 -out keyout.pem
=head1 EXAMPLES
+Examples equivalent to these can be found in the documentation for the
+non-deprecated L<openssl-genpkey(1)> and L<openssl-pkeyparam(1)> commands.
+
To create EC parameters with the group 'prime192v1':
openssl ecparam -out ec_param.pem -name prime192v1
=head1 EXAMPLES
-To remove the pass phrase on an RSA private key:
+To remove the pass phrase on a private key:
openssl pkey -in key.pem -out keyout.pem
=head1 EXAMPLES
+Examples equivalent to these can be found in the documentation for the
+non-deprecated L<openssl-pkey(1)> command.
+
To remove the pass phrase on an RSA private key:
openssl rsa -in key.pem -out keyout.pem
=head1 EXAMPLES
+Examples equivalent to these can be found in the documentation for the
+non-deprecated L<openssl-pkeyutl(1)> command.
+
Sign some data using a private key:
openssl rsautl -sign -in file -inkey key.pem -out sig