diff options
author | Philip Prindeville <philipp@redfish-solutions.com> | 2018-08-09 23:19:19 +0200 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2019-05-01 08:41:49 +0200 |
commit | b6a07f676071b2b9fdc0e625896ebd57563028cd (patch) | |
tree | 252e299684d6e5407f0dec94be57df52c09179a9 /doc/man1 | |
parent | genrsa: introduce -verbose option to enable output (diff) | |
download | openssl-b6a07f676071b2b9fdc0e625896ebd57563028cd.tar.xz openssl-b6a07f676071b2b9fdc0e625896ebd57563028cd.zip |
gendsa: dsaparam: introduce -verbose option to enable output
Other commands like 'req' support -verbose, so why not gendsa and dsaparam?
Part of a larger and more ambitious effort to add -verbose to all apps
that might be used in scripts and need to otherwise run silently (well,
without belching out anything that isn't a warning or error... which ties
into a later scrub of using STDOUT were appropriate for informative
messages instead of STDERR)... so that scripts also have the option of
doing >/dev/null without losing anything critical.
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/6908)
Diffstat (limited to 'doc/man1')
-rw-r--r-- | doc/man1/dsaparam.pod | 17 | ||||
-rw-r--r-- | doc/man1/gendsa.pod | 5 |
2 files changed, 16 insertions, 6 deletions
diff --git a/doc/man1/dsaparam.pod b/doc/man1/dsaparam.pod index 3545e68af9..795c52d5c5 100644 --- a/doc/man1/dsaparam.pod +++ b/doc/man1/dsaparam.pod @@ -20,6 +20,7 @@ B<openssl dsaparam> [B<-writerand file>] [B<-genkey>] [B<-engine id>] +[B<-verbose>] [B<numbits>] =head1 DESCRIPTION @@ -89,12 +90,6 @@ all others. Writes random data to the specified I<file> upon exit. This can be used with a subsequent B<-rand> flag. -=item B<numbits> - -This option specifies that a parameter set should be generated of size -B<numbits>. It must be the last option. If this option is included then -the input file (if any) is ignored. - =item B<-engine id> Specifying an engine (by its unique B<id> string) will cause B<dsaparam> @@ -102,6 +97,16 @@ to attempt to obtain a functional reference to the specified engine, thus initialising it if needed. The engine will then be set as the default for all available algorithms. +=item B<-verbose> + +Print extra details about the operations being performed. + +=item B<numbits> + +This option specifies that a parameter set should be generated of size +B<numbits>. It must be the last option. If this option is included then +the input file (if any) is ignored. + =back =head1 NOTES diff --git a/doc/man1/gendsa.pod b/doc/man1/gendsa.pod index 76dc9dd0c7..180ce57f93 100644 --- a/doc/man1/gendsa.pod +++ b/doc/man1/gendsa.pod @@ -25,6 +25,7 @@ B<openssl> B<gendsa> [B<-rand file...>] [B<-writerand file>] [B<-engine id>] +[B<-verbose>] [B<paramfile>] =head1 DESCRIPTION @@ -71,6 +72,10 @@ to attempt to obtain a functional reference to the specified engine, thus initialising it if needed. The engine will then be set as the default for all available algorithms. +=item B<-verbose> + +Print extra details about the operations being performed. + =item B<paramfile> This option specifies the DSA parameter file to use. The parameters in this |