]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Fixed typos in ossl_ht_new.pod, EVP_PKEY_decrypt.pod, and RSA_public_encrypt.pod
authorsapph2c <arn4006@g.rit.edu>
Tue, 30 Apr 2024 00:26:54 +0000 (20:26 -0400)
committerTomas Mraz <tomas@openssl.org>
Wed, 1 May 2024 13:15:26 +0000 (15:15 +0200)
CLA: trivial

Reviewed-by: Paul Dale <ppzgs1@gmail.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/24304)

doc/internal/man3/ossl_ht_new.pod
doc/man3/EVP_PKEY_decrypt.pod
doc/man3/RSA_public_encrypt.pod

index 2524e6e619f1f85bfcc5287fd531536c3ae282f7..a7601d1e914fd74f1ad02d90ed11efb1babc3fdd 100644 (file)
@@ -151,7 +151,7 @@ ossl_ht_put() on the B<HT_VALUE> to prevent memory leaks.
 
 =item *
 
-ossl_ht_get() preforms a lookup of an B<HT_KEY> in the hashtable, returning
+ossl_ht_get() performs a lookup of an B<HT_KEY> in the hashtable, returning
 its corresponding value.
 
 =item *
@@ -199,12 +199,12 @@ given value.
 
 =item *
 
-HT_SET_KEY_STRING() Preforms a strncpy() of a source string to the destination
+HT_SET_KEY_STRING() Performs a strncpy() of a source string to the destination
 key field.
 
 =item *
 
-HT_SET_KEY_BLOB() Preforms a memcpy() of a source uint8_t buffer to a
+HT_SET_KEY_BLOB() Performs a memcpy() of a source uint8_t buffer to a
 destination key field.
 
 =item *
index 1f5d06b5b8491f09317415c821faa2d27670c58a..903d933fb2c1a88da960ed6e46ab3b1d28aee48c 100644 (file)
@@ -68,7 +68,7 @@ of side-channel secure code from applications using OpenSSL.
 If OpenSSL is configured to use a provider that doesn't implement implicit
 rejection, the code still needs to handle the returned values
 using side-channel free code.
-Side-channel free handling of the error stack can be peformed using
+Side-channel free handling of the error stack can be performed using
 either a pair of unconditional L<ERR_set_mark(3)> and L<ERR_pop_to_mark(3)>
 calls or by using the L<ERR_clear_error(3)> call.
 
index 5e0139b71153b09f5a99842e2f0504c709481aec..47d198a24c1f99b1af18a906f4573eca7a3a202f 100644 (file)
@@ -102,7 +102,7 @@ a side-channel secure error handling.
 Applications that want to be secure against side-channel attacks with
 providers that don't implement implicit rejection, still need to
 handle the returned values using side-channel free code.
-Side-channel free handling of the error stack can be peformed using
+Side-channel free handling of the error stack can be performed using
 either a pair of unconditional L<ERR_set_mark(3)> and L<ERR_pop_to_mark(3)>
 calls or by using the L<ERR_clear_error(3)> call.