Refactor -passin/-passout documentation
authorRich Salz <rsalz@akamai.com>
Tue, 8 Oct 2019 17:10:04 +0000 (13:10 -0400)
committerRichard Levitte <levitte@openssl.org>
Wed, 9 Oct 2019 16:59:27 +0000 (18:59 +0200)
Always refer to openssl.pod instead of repeating the same description
everywhere.

Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/10126)

22 files changed:
apps/list.c
doc/man1/openssl-ca.pod
doc/man1/openssl-cms.pod
doc/man1/openssl-dgst.pod
doc/man1/openssl-dsa.pod
doc/man1/openssl-ec.pod
doc/man1/openssl-enc.pod
doc/man1/openssl-genpkey.pod
doc/man1/openssl-genrsa.pod
doc/man1/openssl-pkcs12.pod
doc/man1/openssl-pkcs8.pod
doc/man1/openssl-pkey.pod
doc/man1/openssl-pkeyutl.pod
doc/man1/openssl-req.pod
doc/man1/openssl-rsa.pod
doc/man1/openssl-s_client.pod
doc/man1/openssl-s_server.pod
doc/man1/openssl-smime.pod
doc/man1/openssl-spkac.pod
doc/man1/openssl-srp.pod
doc/man1/openssl-storeutl.pod
doc/man1/openssl-x509.pod

index 77fd20e1e19fdcf8d7321d575ef7a99d226ffe7b..8c0d9c9b449071680bae066bd1357b597f8eacff 100644 (file)
@@ -331,11 +331,14 @@ static void list_options_for_command(const char *command)
         return;
 
     for ( ; o->name != NULL; o++) {
+        char c = o->valtype;
+
         if (o->name == OPT_HELP_STR
                 || o->name == OPT_MORE_STR
                 || o->name[0] == '\0')
             continue;
         BIO_printf(bio_out, "%s %c\n", o->name, o->valtype);
+        BIO_printf(bio_out, "%s %c\n", o->name, c == '\0' ? '-' : c);
     }
     /* Always output the -- marker since it is sometimes documented. */
     BIO_printf(bio_out, "- -\n");
index a939f4d6e39aa14d3be1c293b6b3c1ad9965194a..6f6580cb54f794ee9a1b876f5b18ceb515035c00 100644 (file)
@@ -166,7 +166,7 @@ self-signed certificate.
 =item B<-passin> I<arg>
 
 The key password source. For more information about the format of B<arg>
-see L<openssl(1)/Pass phrase options>.
+see L<openssl(1)/Pass Phrase Options>.
 
 =item B<-notext>
 
index 0468fdbd9ef44a8a377aa59a3d44ae0b1ef1f423..40ffd0fdde68e0d790cd704bca61796fd2f3de93 100644 (file)
@@ -474,7 +474,7 @@ or to modify default parameters for ECDH.
 =item B<-passin> I<arg>
 
 The private key password source. For more information about the format of B<arg>
-see L<openssl(1)/Pass phrase options>.
+see L<openssl(1)/Pass Phrase Options>.
 
 =item B<-rand> I<files>
 
index 5f836f9cb51fcf44e82e404954662eddf3c08463..b2da9229cfe465f528dd70cc8ed55d534b6570e6 100644 (file)
@@ -101,7 +101,7 @@ Names and values of these options are algorithm-specific.
 =item B<-passin> I<arg>
 
 The private key password source. For more information about the format of I<arg>
-see L<openssl(1)/Pass phrase options>.
+see L<openssl(1)/Pass Phrase Options>.
 
 =item B<-verify> I<filename>
 
index 3e3a114252af99c17ec15730fa92c014ccbf4d5a..14a95284f16e8d068156d341205f0ba86ebcbb5d 100644 (file)
@@ -73,11 +73,6 @@ This specifies the input filename to read a key from or standard input if this
 option is not specified. If the key is encrypted a pass phrase will be
 prompted for.
 
-=item B<-passin> I<arg>
-
-The input file password source. For more information about the format of I<arg>
-see L<openssl(1)/Pass phrase options>.
-
 =item B<-out> I<filename>
 
 This specifies the output filename to write a key to or standard output by
@@ -85,10 +80,11 @@ is not specified. If any encryption options are set then a pass phrase will be
 prompted for. The output filename should B<not> be the same as the input
 filename.
 
-=item B<-passout> I<arg>
+=item B<-passin> I<arg>, B<-passout> I<arg>
 
-The output file password source. For more information about the format of I<arg>
-see L<openssl(1)/Pass phrase options>.
+The password source for the input and output file.
+For more information about the format of B<arg>
+see L<openssl(1)/Pass Phrase Options>.
 
 =item B<-aes128>, B<-aes192>, B<-aes256>, B<-aria128>, B<-aria192>, B<-aria256>, B<-camellia128>, B<-camellia192>, B<-camellia256>, B<-des>, B<-des3>, B<-idea>
 
index 8f09692007ace63ed889bc5b394da18900e3f802..82a33bbe246ed14cab5faada700e0b030a93ca57 100644 (file)
@@ -66,11 +66,6 @@ This specifies the input filename to read a key from or standard input if this
 option is not specified. If the key is encrypted a pass phrase will be
 prompted for.
 
-=item B<-passin> I<arg>
-
-The input file password source. For more information about the format of I<arg>
-see L<openssl(1)/Pass phrase options>.
-
 =item B<-out> I<filename>
 
 This specifies the output filename to write a key to or standard output by
@@ -78,10 +73,11 @@ is not specified. If any encryption options are set then a pass phrase will be
 prompted for. The output filename should B<not> be the same as the input
 filename.
 
-=item B<-passout> I<arg>
+=item B<-passin> I<arg>, B<-passout> I<arg>
 
-The output file password source. For more information about the format of I<arg>
-see L<openssl(1)/Pass phrase options>.
+The password source for the input and output file.
+For more information about the format of B<arg>
+see L<openssl(1)/Pass Phrase Options>.
 
 =item B<-des>|B<-des3>|B<-idea>
 
index f2608a59f70f59379a9de1f8568eb80687c4a2a5..327356da1cada91a3197aa5d3793eeb1f7195438 100644 (file)
@@ -73,7 +73,7 @@ The output filename, standard output by default.
 =item B<-pass> I<arg>
 
 The password source. For more information about the format of I<arg>
-see L<openssl(1)/Pass phrase options>.
+see L<openssl(1)/Pass Phrase Options>.
 
 =item B<-e>
 
index bace33a38a1f01199a693e0d7617fdc0fbda1155..3fd6bef091bde0b1d9a9ec5b34475daf39e65dab 100644 (file)
@@ -45,7 +45,7 @@ This specifies the output format DER or PEM. The default format is PEM.
 =item B<-pass> I<arg>
 
 The output file password source. For more information about the format of I<arg>
-see L<openssl(1)/Pass phrase options>.
+see L<openssl(1)/Pass Phrase Options>.
 
 =item B<-I<cipher>>
 
index 39e221c9a97d704a8a0b98d9dcbbeb17011d9ede..27ca9f7402e81334312a68e3ae1a9d6f21fb29fb 100644 (file)
@@ -52,7 +52,7 @@ standard output is used.
 =item B<-passout> I<arg>
 
 The output file password source. For more information about the format
-see L<openssl(1)/Pass phrase options>.
+see L<openssl(1)/Pass Phrase Options>.
 
 =item B<-aes128>, B<-aes192>, B<-aes256>, B<-aria128>, B<-aria192>, B<-aria256>, B<-camellia128>, B<-camellia192>, B<-camellia256>, B<-des>, B<-des3>, B<-idea>
 
index 4ea722b6e004429d465439f5fe7b28f688d02bf4..af044d5da1f3e371e43256fe8d1be4dd1fa1b17d 100644 (file)
@@ -76,22 +76,10 @@ by default.
 The filename to write certificates and private keys to, standard output by
 default.  They are all written in PEM format.
 
-=item B<-passin> I<arg>
-
-The PKCS#12 file (i.e. input file) password source. For more information about
-the format of I<arg>
-see L<openssl(1)/Pass phrase options>.
-
-=item B<-passout> I<arg>
-
-Pass phrase source to encrypt any outputted private keys with. For more
-information about the format of I<arg>
-see L<openssl(1)/Pass phrase options>.
-
 =item B<-password> I<arg>
 
-With -export, -password is equivalent to -passout.
-Otherwise, -password is equivalent to -passin.
+With B<-export>, B<-password> is equivalent to B<-passout>,
+otherwise it is equivalent to B<-passin>.
 
 =item B<-noout>
 
@@ -156,7 +144,7 @@ Don't attempt to verify the integrity MAC before reading the file.
 Prompt for separate integrity and encryption passwords: most software
 always assumes these are the same so this option will render such
 PKCS#12 files unreadable. Cannot be used in combination with the options
--password, -passin (if importing) or -passout (if exporting).
+B<-password>, B<-passin> if importing, or B<-passout> if exporting.
 
 =back
 
@@ -204,15 +192,12 @@ used multiple times to specify names for all certificates in the order they
 appear. Netscape ignores friendly names on other certificates whereas MSIE
 displays them.
 
-=item B<-pass> I<arg>, B<-passout> I<arg>
-
-The PKCS#12 file (i.e. output file) password source. For more information about
-the format of I<arg> see L<openssl(1)/Pass phrase options>.
-
-=item B<-passin> I<password>
+=item B<-passin> I<arg>, B<-passout> I<arg>
 
-Pass phrase source to decrypt any input private keys with. For more information
-about the format of I<arg> see L<openssl(1)/Pass phrase options>.
+The password source for the input, and for encrypting any private keys that
+are output.
+For more information about the format of B<arg>
+see L<openssl(1)/Pass Phrase Options>.
 
 =item B<-chain>
 
index a3b6b7b762553031472382d77f69471c82d2a257..7015ab9fa30dda13889c131fdc80725115e5c26c 100644 (file)
@@ -73,10 +73,11 @@ This specifies the input filename to read a key from or standard input if this
 option is not specified. If the key is encrypted a pass phrase will be
 prompted for.
 
-=item B<-passin> I<arg>
+=item B<-passin> I<arg>, B<-passout> I<arg>
 
-The input file password source. For more information about the format of I<arg>
-see L<openssl(1)/Pass phrase options>.
+The password source for the input and output file.
+For more information about the format of B<arg>
+see L<openssl(1)/Pass Phrase Options>.
 
 =item B<-out> I<filename>
 
@@ -85,11 +86,6 @@ default. If any encryption options are set then a pass phrase will be
 prompted for. The output filename should B<not> be the same as the input
 filename.
 
-=item B<-passout> I<arg>
-
-The output file password source. For more information about the format of I<arg>
-see L<openssl(1)/Pass phrase options>.
-
 =item B<-iter> I<count>
 
 When creating new PKCS#8 containers, use a given number of iterations on
index 4177a6fedf0e7a677dcc70167f625c1f508afd22..66ec9d17c3c60ac6917adc2c109cacef6eac9cbb 100644 (file)
@@ -55,10 +55,11 @@ This specifies the input filename to read a key from or standard input if this
 option is not specified. If the key is encrypted a pass phrase will be
 prompted for.
 
-=item B<-passin> I<arg>
+=item B<-passin> I<arg>, B<-passout> I<arg>
 
-The input file password source. For more information about the format of I<arg>
-see L<openssl(1)/Pass phrase options>.
+The password source for the input and output file.
+For more information about the format of B<arg>
+see L<openssl(1)/Pass Phrase Options>.
 
 =item B<-out> I<filename>
 
@@ -67,11 +68,6 @@ option is not specified. If any encryption options are set then a pass phrase
 will be prompted for. The output filename should B<not> be the same as the input
 filename.
 
-=item B<-passout> I<arg>
-
-The output file password source. For more information about the format of I<arg>
-see L<openssl(1)/Pass phrase options>.
-
 =item B<-traditional>
 
 Normally a private key is written using standard format: this is PKCS#8 form
index 1f231ba32514fea7269b4860835505b5b50f0fbd..b614b4af3781314b3ffd488043ad8620b6deca56 100644 (file)
@@ -95,7 +95,7 @@ The key format PEM, DER or ENGINE. Default is PEM.
 =item B<-passin> I<arg>
 
 The input key password source. For more information about the format of I<arg>
-see L<openssl(1)/Pass phrase options>.
+see L<openssl(1)/Pass Phrase Options>.
 
 =item B<-peerkey> I<file>
 
index d0d1700ef8e2d24866b4243dd5db8691ba732851..13126734a40ffcc00fae86b77476339690794949 100644 (file)
@@ -90,21 +90,17 @@ options (B<-new> and B<-newkey>) are not specified.
 Pass options to the signature algorithm during sign or verify operations.
 Names and values of these options are algorithm-specific.
 
-=item B<-passin> I<arg>
+=item B<-passin> I<arg>, B<-passout> I<arg>
 
-The input file password source. For more information about the format of B<arg>
-see L<openssl(1)/Pass phrase options>.
+The password source for the input and output file.
+For more information about the format of B<arg>
+see L<openssl(1)/Pass Phrase Options>.
 
 =item B<-out> I<filename>
 
 This specifies the output filename to write to or standard output by
 default.
 
-=item B<-passout> I<arg>
-
-The output file password source. For more information about the format of B<arg>
-see L<openssl(1)/Pass phrase options>.
-
 =item B<-text>
 
 Prints out the certificate request in text form.
index 7c2fd9effa0bf9567723172e3076a8460db683ad..61a3f267e566f1353c1a203bd636eca42360a77d 100644 (file)
@@ -73,10 +73,11 @@ This specifies the input filename to read a key from or standard input if this
 option is not specified. If the key is encrypted a pass phrase will be
 prompted for.
 
-=item B<-passin> I<arg>
+=item B<-passin> I<arg>, B<-passout> I<arg>
 
-The input file password source. For more information about the format of I<arg>
-see L<openssl(1)/Pass phrase options>.
+The password source for the input and output file.
+For more information about the format of B<arg>
+see L<openssl(1)/Pass Phrase Options>.
 
 =item B<-out> I<filename>
 
@@ -85,11 +86,6 @@ option is not specified. If any encryption options are set then a pass phrase
 will be prompted for. The output filename should B<not> be the same as the input
 filename.
 
-=item B<-passout> I<arg>
-
-The output file password source. For more information about the format of I<arg>
-see L<openssl(1)/Pass phrase options>.
-
 =item B<-aes128>, B<-aes192>, B<-aes256>, B<-aria128>, B<-aria192>, B<-aria256>, B<-camellia128>, B<-camellia192>, B<-camellia256>, B<-des>, B<-des3>, B<-idea>
 
 These options encrypt the private key with the specified
index 8ad2679b6340fb966fb849429dc48971d7800f40..598e6836bce360040b7378e39d17026f6898e098 100644 (file)
@@ -200,7 +200,7 @@ the network. Use with caution.
 
 The proxy password source, used with the B<-proxy_user> flag.
 For more information about the format of B<arg>
-see L<openssl(1)/Pass phrase options>.
+see L<openssl(1)/Pass Phrase Options>.
 
 =item B<-unix> I<path>
 
index e99d3b6a66b809c1df77810bb4416e1fd2a78e9a..4c44db820ad3184bb5cdcddb63152785fd6c7761 100644 (file)
@@ -306,7 +306,7 @@ The private format to use: DER or PEM. PEM is the default.
 =item B<-pass> I<val>
 
 The private key password source. For more information about the format of B<val>
-see L<openssl(1)/Pass phrase options>.
+see L<openssl(1)/Pass Phrase Options>.
 
 =item B<-dcert> I<infile>, B<-dkey> I<infile>
 
index 4faf37868d510e260639a96c119475797e76345d..50fabe3fb1166790a4314b153ad2c73b155d801e 100644 (file)
@@ -296,7 +296,7 @@ specified, the argument is given to the engine as a key identifier.
 =item B<-passin> I<arg>
 
 The private key password source. For more information about the format of I<arg>
-see L<openssl(1)/Pass phrase options>.
+see L<openssl(1)/Pass Phrase Options>.
 
 =item B<-rand> I<files>
 
index fb64a6793c73a1c9885fae13c246802fee1063dc..0f26986f921261b4ce8c0b053ca64c1021598907 100644 (file)
@@ -61,7 +61,7 @@ The default is PEM.
 =item B<-passin> I<arg>
 
 The input file password source. For more information about the format of I<arg>
-see L<openssl(1)/Pass phrase options>.
+see L<openssl(1)/Pass Phrase Options>.
 
 =item B<-challenge> I<string>
 
index 8890e00e9431123e8df62e05770dec1b02f6a812..d25867a36b4815df0fc9d6c0a7cd4bf2d45cfa51 100644 (file)
@@ -35,17 +35,6 @@ For B<-list>, if no I<user> is given then all users are displayed.
 
 The configuration file to use, and the section within the file, can be
 specified with the B<-config> and B<-name> flags, respectively.
-If the config file is not specified, the B<-srpvfile> can be used to
-just specify the file to operate on.
-
-The B<-userinfo> option specifies additional information to add when
-adding or modifying a user.
-
-The B<-gn> flag specifies the I<g> and I<N> values, using one of
-the strengths defined in IETF RFC 5054.
-
-The B<-passin> and B<-passout> arguments are parsed as described in
-the L<openssl(1)/Pass phrase options> command.
 
 =head1 OPTIONS
 
@@ -59,6 +48,27 @@ Display an option summary.
 
 Generate verbose output while processing.
 
+=item B<-srpvfile> I<file>
+
+If the config file is not specified,
+B<-srpvfile> can be used to specify the file to operate on.
+
+=item B<-gn>
+
+Specifies the B<g> and B<N> values, using one of
+the strengths defined in IETF RFC 5054.
+
+=item B<-userinfo>
+
+specifies additional information to add when
+adding or modifying a user.
+
+=item B<-passin> I<arg>, B<-passout> I<arg>
+
+The password source for the input and output file.
+For more information about the format of B<arg>
+see L<openssl(1)/Pass Phrase Options>.
+
 =back
 
 =head1 COPYRIGHT
index dbe0d9f8442a0ff1e21b217dbceb28cd670f9b03..0ceb1cea97c7c4b38900adb91217769d8c4b9d24 100644 (file)
@@ -50,7 +50,7 @@ this option prevents output of the PEM data.
 =item B<-passin> I<arg>
 
 the key password source. For more information about the format of I<arg>
-see L<openssl(1)/Pass phrase options>.
+see L<openssl(1)/Pass Phrase Options>.
 
 =item B<-text>
 
index f7e56abf2237243e45fe4a4b7019adc787ba85f7..b4d41df3b221a19d0a9e216ce807343650ac914b 100644 (file)
@@ -373,7 +373,7 @@ Names and values of these options are algorithm-specific.
 =item B<-passin> I<arg>
 
 The key password source. For more information about the format of I<arg>
-see L<openssl(1)/Pass phrase options>.
+see L<openssl(1)/Pass Phrase Options>.
 
 =item B<-clrext>