Commit bfa35550 authored by Richard Levitte's avatar Richard Levitte
Browse files

Document -engine where missing.

PR: 424
parent 5d780bab
Loading
Loading
Loading
Loading
+8 −0
Original line number Original line Diff line number Diff line
@@ -43,6 +43,7 @@ B<openssl> B<ca>
[B<-msie_hack>]
[B<-msie_hack>]
[B<-extensions section>]
[B<-extensions section>]
[B<-extfile section>]
[B<-extfile section>]
[B<-engine id>]


=head1 DESCRIPTION
=head1 DESCRIPTION


@@ -195,6 +196,13 @@ an additional configuration file to read certificate extensions from
(using the default section unless the B<-extensions> option is also
(using the default section unless the B<-extensions> option is also
used).
used).


=item B<-engine id>

specifying an engine (by it's unique B<id> string) will cause B<req>
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.

=back
=back


=head1 CRL OPTIONS
=head1 CRL OPTIONS
+8 −0
Original line number Original line Diff line number Diff line
@@ -18,6 +18,7 @@ B<openssl dhparam>
[B<-2>]
[B<-2>]
[B<-5>]
[B<-5>]
[B<-rand> I<file(s)>]
[B<-rand> I<file(s)>]
[B<-engine id>]
[I<numbits>]
[I<numbits>]


=head1 DESCRIPTION
=head1 DESCRIPTION
@@ -96,6 +97,13 @@ this option prints out the DH parameters in human readable form.
this option converts the parameters into C code. The parameters can then
this option converts the parameters into C code. The parameters can then
be loaded by calling the B<get_dh>I<numbits>B<()> function.
be loaded by calling the B<get_dh>I<numbits>B<()> function.


=item B<-engine id>

specifying an engine (by it's unique B<id> string) will cause B<req>
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.

=back
=back


=head1 WARNINGS
=head1 WARNINGS
+8 −0
Original line number Original line Diff line number Diff line
@@ -21,6 +21,7 @@ B<openssl> B<dsa>
[B<-modulus>]
[B<-modulus>]
[B<-pubin>]
[B<-pubin>]
[B<-pubout>]
[B<-pubout>]
[B<-engine id>]


=head1 DESCRIPTION
=head1 DESCRIPTION


@@ -106,6 +107,13 @@ by default a private key is output. With this option a public
key will be output instead. This option is automatically set if the input is
key will be output instead. This option is automatically set if the input is
a public key.
a public key.


=item B<-engine id>

specifying an engine (by it's unique B<id> string) will cause B<req>
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.

=back
=back


=head1 NOTES
=head1 NOTES
+8 −0
Original line number Original line Diff line number Diff line
@@ -16,6 +16,7 @@ B<openssl dsaparam>
[B<-C>]
[B<-C>]
[B<-rand file(s)>]
[B<-rand file(s)>]
[B<-genkey>]
[B<-genkey>]
[B<-engine id>]
[B<numbits>]
[B<numbits>]


=head1 DESCRIPTION
=head1 DESCRIPTION
@@ -82,6 +83,13 @@ 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
B<numbits>. It must be the last option. If this option is included then
the input file (if any) is ignored.
the input file (if any) is ignored.


=item B<-engine id>

specifying an engine (by it's unique B<id> string) will cause B<req>
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.

=back
=back


=head1 NOTES
=head1 NOTES
+8 −0
Original line number Original line Diff line number Diff line
@@ -12,6 +12,7 @@ B<openssl> B<gendsa>
[B<-des3>]
[B<-des3>]
[B<-idea>]
[B<-idea>]
[B<-rand file(s)>]
[B<-rand file(s)>]
[B<-engine id>]
[B<paramfile>]
[B<paramfile>]


=head1 DESCRIPTION
=head1 DESCRIPTION
@@ -37,6 +38,13 @@ Multiple files can be specified separated by a OS-dependent character.
The separator is B<;> for MS-Windows, B<,> for OpenVMS, and B<:> for
The separator is B<;> for MS-Windows, B<,> for OpenVMS, and B<:> for
all others.
all others.


=item B<-engine id>

specifying an engine (by it's unique B<id> string) will cause B<req>
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<paramfile>
=item B<paramfile>


This option specifies the DSA parameter file to use. The parameters in this
This option specifies the DSA parameter file to use. The parameters in this
Loading