From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Fri, 22 Dec 2023 13:06:24 +0000 (+0100) Subject: Fix typos found by codespell in man pages X-Git-Tag: openssl-3.3.0-alpha1~376 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7deb2b433a08706337d8520793702f78765ecf90;p=thirdparty%2Fopenssl.git Fix typos found by codespell in man pages Reviewed-by: Paul Yang Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/23131) --- diff --git a/doc/man1/openssl-rand.pod.in b/doc/man1/openssl-rand.pod.in index d4427a67246..7c07df3f147 100644 --- a/doc/man1/openssl-rand.pod.in +++ b/doc/man1/openssl-rand.pod.in @@ -25,7 +25,7 @@ multiple of KiB/MiB/GiB/TiB respectively. Note that suffixes are case sensitive, and that the suffixes represent binary multiples (K = 1024 bytes, M = 1024*1024 bytes, etc). -The string 'max' may be substituted for a numercial value in num, to request the +The string 'max' may be substituted for a numerical value in num, to request the maximum number of bytes the CSPRNG can produce per instantiation. Currently, this is restricted to 2^61 bytes as per NIST SP 800-90C. diff --git a/doc/man3/OSSL_CMP_SRV_CTX_new.pod b/doc/man3/OSSL_CMP_SRV_CTX_new.pod index 66d722c291e..d1fd7e83b1a 100644 --- a/doc/man3/OSSL_CMP_SRV_CTX_new.pod +++ b/doc/man3/OSSL_CMP_SRV_CTX_new.pod @@ -127,7 +127,7 @@ OSSL_CMP_SRV_CTX_init_trans() sets in I the optional callback functions for initiating delayed delivery and cleaning up a transaction. If the function is NULL then delivery of responses is never delayed. Otherwise I takes a custom server context and a request message as input. -It must return 1 if delivery of the respecive response shall be delayed, +It must return 1 if delivery of the respective response shall be delayed, 0 if not, and -1 on error. If the function is NULL then no specific cleanup is performed. Otherwise I takes a custom server context and a transaction ID pointer diff --git a/doc/man7/EVP_KDF-ARGON2.pod b/doc/man7/EVP_KDF-ARGON2.pod index e2dfb6edbf7..d41a3179b53 100644 --- a/doc/man7/EVP_KDF-ARGON2.pod +++ b/doc/man7/EVP_KDF-ARGON2.pod @@ -21,7 +21,7 @@ primary seek to address trade-off (side-channel) attacks. Argon2id is a hybrid construction which, in the first two slices of the first pass, generates reference addresses data-independently as in Argon2i, whereas -in later slices and next passess it generates them data-dependently as in +in later slices and next passes it generates them data-dependently as in Argon2d. Sbox-hardened version Argon2ds is not supported. diff --git a/doc/man7/ossl-guide-tls-client-block.pod b/doc/man7/ossl-guide-tls-client-block.pod index ba59bd4ab3c..8f72fe3a1c0 100644 --- a/doc/man7/ossl-guide-tls-client-block.pod +++ b/doc/man7/ossl-guide-tls-client-block.pod @@ -348,7 +348,7 @@ connection. To send data to the server we use the L function and to receive data from the server we use the L function. In HTTP 1.0 the client always writes data first. Our HTTP request will include the hostname that -we are connecting to. For simplicitly, we write the HTTP request in three +we are connecting to. For simplicity, we write the HTTP request in three chunks. First we write the start of the request. Secondly we write the hostname we are sending the request to. Finally we send the end of the request.