pkey: update command line tool examples in light of deprecations.
authorPauli <paul.dale@oracle.com>
Mon, 17 Feb 2020 23:46:52 +0000 (09:46 +1000)
committerPauli <paul.dale@oracle.com>
Fri, 21 Feb 2020 12:55:13 +0000 (22:55 +1000)
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)

doc/man1/openssl-dsa.pod.in
doc/man1/openssl-ec.pod.in
doc/man1/openssl-ecparam.pod.in
doc/man1/openssl-pkey.pod.in
doc/man1/openssl-rsa.pod.in
doc/man1/openssl-rsautl.pod.in

index 4ba948a41b1c404ce0747875bef38424684214f6..03fcb7d09bbfcfb0f573ab3ccf35c0bc759bbe29 100644 (file)
@@ -127,6 +127,9 @@ a public key.
 
 =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
index 7bf198929502633161c9ba3fc2f36c7919d81a2f..ed85ca04b8dc09441e848476858e5fa4ff9d5659 100644 (file)
@@ -145,6 +145,9 @@ This option checks the consistency of an EC private or public key.
 
 =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
index c8391b481f7b913ad0527218768b0c92666af799..934bf5a3808101add0b74216249541254b0116ba 100644 (file)
@@ -134,6 +134,9 @@ This option will generate an EC private key using the specified parameters.
 
 =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
index e2905b693406235a01f00f050b467ad40fa524fc..c85fc1232795f7ba42ee203e0e72d4688a4bb0c5 100644 (file)
@@ -120,7 +120,7 @@ of a key pair.
 
 =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
 
index a688260270668771c5f576b6e79d1457ad8fb03d..5b867225ac4b81628120d451d9f660a3ad2e07bd 100644 (file)
@@ -140,6 +140,9 @@ Like B<-pubin> and B<-pubout> except B<RSAPublicKey> format is used instead.
 
 =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
index b9d0572883983a87248ec343be8e87d5fce9bd9d..1a3a1516e340b92e46fe92c1a296879959758606 100644 (file)
@@ -135,6 +135,9 @@ used to sign or verify small pieces of data.
 
 =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