Commit 27b138e9 authored by Josh Soref's avatar Josh Soref Committed by Rich Salz
Browse files

Fix spelling errors in manpages

spelling: algorithm
spelling: anyway
spelling: assigned
spelling: authenticated
spelling: callback
spelling: certificate
spelling: compatibility
spelling: configuration
spelling: digest
spelling: encrypted
spelling: function
spelling: output
spelling: receive
spelling: renegotiation
spelling: signing
spelling: similar
spelling: string

(Merged from https://github.com/openssl/openssl/pull/3580)Reviewed-by

: Rich Salz <rsalz@openssl.org>
Reviewed-by: default avatarKurt Roeckx <kurt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3580)
parent fbaf2857
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -185,7 +185,7 @@ output an error.
=item B<-EncryptedData_encrypt>
=item B<-EncryptedData_encrypt>


Encrypt content using supplied symmetric key and algorithm using a CMS
Encrypt content using supplied symmetric key and algorithm using a CMS
B<EncrytedData> type and output the content.
B<EncryptedData> type and output the content.


=item B<-sign_receipt>
=item B<-sign_receipt>


+3 −3
Original line number Original line Diff line number Diff line
@@ -20,8 +20,8 @@ BIO_callback_fn_ex, BIO_callback_fn
 void BIO_set_callback_ex(BIO *b, BIO_callback_fn_ex callback);
 void BIO_set_callback_ex(BIO *b, BIO_callback_fn_ex callback);
 BIO_callback_fn_ex BIO_get_callback_ex(const BIO *b);
 BIO_callback_fn_ex BIO_get_callback_ex(const BIO *b);


 void BIO_set_callback(BIO *b, BIO_callack_fn cb);
 void BIO_set_callback(BIO *b, BIO_callback_fn cb);
 BIO_callack_fn BIO_get_callback(BIO *b);
 BIO_callback_fn BIO_get_callback(BIO *b);
 void BIO_set_callback_arg(BIO *b, char *arg);
 void BIO_set_callback_arg(BIO *b, char *arg);
 char *BIO_get_callback_arg(const BIO *b);
 char *BIO_get_callback_arg(const BIO *b);


@@ -37,7 +37,7 @@ operation.


BIO_set_callback() and BIO_get_callback() set and retrieve the old format BIO
BIO_set_callback() and BIO_get_callback() set and retrieve the old format BIO
callback. New code should not use these functions, but they are retained for
callback. New code should not use these functions, but they are retained for
backwards compatbility. Any callback set via BIO_set_callback_ex() will get
backwards compatibility. Any callback set via BIO_set_callback_ex() will get
called in preference to any set by BIO_set_callback().
called in preference to any set by BIO_set_callback().


BIO_set_callback_arg() and BIO_get_callback_arg() are macros which can be
BIO_set_callback_arg() and BIO_get_callback_arg() are macros which can be
+1 −1
Original line number Original line Diff line number Diff line
@@ -41,7 +41,7 @@ call is successful the signature is written to B<sig> and the amount of data
written to B<siglen>.
written to B<siglen>.


EVP_DigestSign() signs B<tbslen> bytes of data at B<tbs> and places the
EVP_DigestSign() signs B<tbslen> bytes of data at B<tbs> and places the
signature in B<sig> and its length in B<siglen> in a simiilar way to
signature in B<sig> and its length in B<siglen> in a similar way to
EVP_DigestSignFinal().
EVP_DigestSignFinal().


=head1 RETURN VALUES
=head1 RETURN VALUES
+2 −2
Original line number Original line Diff line number Diff line
@@ -35,7 +35,7 @@ using a macro.
EVP_DigestVerifyFinal() verifies the data in B<ctx> against the signature in
EVP_DigestVerifyFinal() verifies the data in B<ctx> against the signature in
B<sig> of length B<siglen>.
B<sig> of length B<siglen>.


EVP_DogestVerify() verifies B<tbslen> bytes at B<tbs> against the signature
EVP_DigestVerify() verifies B<tbslen> bytes at B<tbs> against the signature
in B<sig> of length B<siglen>.
in B<sig> of length B<siglen>.


=head1 RETURN VALUES
=head1 RETURN VALUES
@@ -57,7 +57,7 @@ The B<EVP> interface to digital signatures should almost always be used in
preference to the low level interfaces. This is because the code then becomes
preference to the low level interfaces. This is because the code then becomes
transparent to the algorithm used and much more flexible.
transparent to the algorithm used and much more flexible.


EVP_DigesVerify() is a one shot operation which verifies a single block of
EVP_DigestVerify() is a one shot operation which verifies a single block of
data in one function. For algorithms that support streaming it is equivalent
data in one function. For algorithms that support streaming it is equivalent
to calling EVP_DigestVerifyUpdate() and EVP_DigestVerifyFinal(). For
to calling EVP_DigestVerifyUpdate() and EVP_DigestVerifyFinal(). For
algorithms which do not support streaming (e.g. PureEdDSA) it is the only way
algorithms which do not support streaming (e.g. PureEdDSA) it is the only way
+1 −1
Original line number Original line Diff line number Diff line
@@ -47,7 +47,7 @@ required by the S/MIME specifications) if B<PKCS7_BINARY> is set no translation
occurs. This option should be used if the supplied data is in binary format
occurs. This option should be used if the supplied data is in binary format
otherwise the translation will corrupt it.
otherwise the translation will corrupt it.


The signedData structure includes several PKCS#7 autenticatedAttributes
The signedData structure includes several PKCS#7 authenticatedAttributes
including the signing time, the PKCS#7 content type and the supported list of
including the signing time, the PKCS#7 content type and the supported list of
ciphers in an SMIMECapabilities attribute. If B<PKCS7_NOATTR> is set then no
ciphers in an SMIMECapabilities attribute. If B<PKCS7_NOATTR> is set then no
authenticatedAttributes will be used. If B<PKCS7_NOSMIMECAP> is set then just
authenticatedAttributes will be used. If B<PKCS7_NOSMIMECAP> is set then just
Loading