Commit 35ed393e authored by Alex Gaynor's avatar Alex Gaynor Committed by Rich Salz
Browse files

Fixed a bunch of typos in the docs

parent 34c2db9b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -258,7 +258,7 @@ Here is some skeleton code you can fill in:
          }
        else if (!(xs->ex_flags & EXFLAG_CA))
          {
            /* We have a EE certificate, let's use it to set default!
            /* We have an EE certificate, let's use it to set default!
            */
            YOUR_RIGHTS *rights =
              (YOUR_RIGHTS *)X509_STORE_CTX_get_ex_data(ctx,
+1 −1
Original line number Diff line number Diff line
@@ -101,7 +101,7 @@ section for information on the required input and output format.
=item B<-infiles>

if present this should be the last option, all subsequent arguments
are assumed to the the names of files containing certificate requests. 
are assumed to the names of files containing certificate requests. 

=item B<-out filename>

+1 −1
Original line number Diff line number Diff line
@@ -454,7 +454,7 @@ see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)>.

a file or files containing random data used to seed the random number
generator, or an EGD socket (see L<RAND_egd(3)>).
Multiple files can be specified separated by a OS-dependent character.
Multiple files can be specified separated by an OS-dependent character.
The separator is B<;> for MS-Windows, B<,> for OpenVMS, and B<:> for
all others.

+2 −2
Original line number Diff line number Diff line
@@ -292,7 +292,7 @@ This next example shows how to expand environment variables safely.

Suppose you want a variable called B<tmpfile> to refer to a
temporary filename. The directory it is placed in can determined by
the the B<TEMP> or B<TMP> environment variables but they may not be
the B<TEMP> or B<TMP> environment variables but they may not be
set to any value at all. If you just include the environment variable
names and the variable doesn't exist then this will cause an error when
an attempt is made to load the configuration file. By making use of the
@@ -344,7 +344,7 @@ More complex OpenSSL library configuration. Add OID and don't enter FIPS mode:
 # New OID shortname and long name
 newoid2 = New OID 2 long name, 1.2.3.4.2

The above examples can be used with with any application supporting library
The above examples can be used with any application supporting library
configuration if "openssl_conf" is modified to match the appropriate "appname".

For example if the second sample file above is saved to "example.cnf" then
+3 −3
Original line number Diff line number Diff line
@@ -106,12 +106,12 @@ see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)>.

=item B<-verify filename>

verify the signature using the the public key in "filename".
verify the signature using the public key in "filename".
The output is either "Verification OK" or "Verification Failure".

=item B<-prverify filename>

verify the signature using the  the private key in "filename".
verify the signature using the private key in "filename".

=item B<-signature filename>

@@ -154,7 +154,7 @@ for example exactly 32 chars for gost-mac.

a file or files containing random data used to seed the random number
generator, or an EGD socket (see L<RAND_egd(3)>).
Multiple files can be specified separated by a OS-dependent character.
Multiple files can be specified separated by an OS-dependent character.
The separator is B<;> for MS-Windows, B<,> for OpenVMS, and B<:> for
all others. 

Loading