]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Remove repetitive words
authorNeil Horman <nhorman@openssl.org>
Thu, 11 Apr 2024 20:19:01 +0000 (16:19 -0400)
committerTomas Mraz <tomas@openssl.org>
Tue, 16 Apr 2024 07:07:05 +0000 (09:07 +0200)
Signed-off-by: fanqiaojun <fanqiaojun@yeah.net>
Reviewed-by: Paul Dale <ppzgs1@gmail.com>
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/24128)

crypto/chacha/asm/chachap10-ppc.pl
doc/designs/quic-design/quic-api.md
doc/designs/quic-design/record-layer.md
doc/man1/openssl-s_client.pod.in
doc/man3/EVP_EncryptInit.pod
doc/man3/RAND_get0_primary.pod
doc/man7/ossl-guide-migration.pod
ssl/quic/quic_port.c

index 032cf2585bb5ea7ab3bbadea2a85b38476dd5497..ea4f3faf53d186c6c50aab1c9de6e2a521b67ab0 100755 (executable)
@@ -787,7 +787,7 @@ $code.=<<___;
 
        vxxlor          $xv6  ,$xb6,$xb6                # save vr23, so we get 8 regs
        vxxlor          $xv7  ,$xb7,$xb7                # save vr23, so we get 8 regs
-       be?vxxlorc      $beperm,$xv26,$xv26             # copy back the the beperm.
+       be?vxxlorc      $beperm,$xv26,$xv26             # copy back the beperm.
 
        vxxlorc    @K[0],$xv0,$xv0                #27
        vxxlorc    @K[1],$xv1,$xv1                #24
index fceacdda6df830aa8929bce152b7b372fcb13ef3..8aa972b4dfeeeddb9a397f830787d842867e8dd4 100644 (file)
@@ -1480,7 +1480,7 @@ network BIO.)
 There are only really two ways to handle this:
 
 - **RFC conformant mode.** `SSL_shutdown` only indicates that shutdown is
-  complete once the the entire connection closure process is complete.
+  complete once the entire connection closure process is complete.
 
   This process consists of the Closing and Draining states. In some cases the
   Closing state may last only briefly, namely if the peer chooses to respond to
index 172098b54756fe426193df43e08a74918e6c5b09..4bea5fd5033d0b43b5f1900ac4606120765a133b 100644 (file)
@@ -503,7 +503,7 @@ struct ossl_record_method_st {
      * which is used in a subsequent call to |release_record|. The buffer must
      * remain available until release_record is called.
      *
-     * Internally the the OSSL_RECORD_METHOD the implementation may read/process
+     * Internally the OSSL_RECORD_METHOD the implementation may read/process
      * multiple records in one go and buffer them.
      */
     int (*read_record)(OSSL_RECORD_LAYER *rl, void **rechandle, int *rversion,
index 032edb2a368f862b72eb51752038ace3f5920ec1..51473a65c29cd0a4efa0ba93b7ce7e90e4823a75 100644 (file)
@@ -944,7 +944,7 @@ Reconnect to the peer and attempt a resumption handshake
 
 Send a Key Update message. TLSv1.3 only. This command takes an optional
 argument. If the argument "req" is supplied then the peer is also requested to
-update its keys. Otherwise if "noreq" is supplied the the peer is not requested
+update its keys. Otherwise if "noreq" is supplied the peer is not requested
 to update its keys. The default is "req".
 
 =item B<reneg>
index 7ecfec86373f35e7136b8ac93e39a290bd7e4aa2..0bf10c90d71075ed25e7f4325fc67d50e6872ec6 100644 (file)
@@ -1438,7 +1438,7 @@ indicates if the operation was successful. If it does not indicate success
 the authentication operation has failed and any output data B<MUST NOT>
 be used as it is corrupted.
 
-The API does not store the the SIV (Synthetic Initialization Vector) in
+The API does not store the SIV (Synthetic Initialization Vector) in
 the cipher text. Instead, it is stored as the tag within the EVP_CIPHER_CTX.
 The SIV must be retrieved from the context after encryption, and set into
 the context before decryption.
index 88a2f6c311bc318b985c21ee80360ad7c7054d27..62365a7e30917cc279bb1eae313d546ea9056953 100644 (file)
@@ -68,7 +68,7 @@ To set the type of DRBG that will be instantiated, use the
 L<RAND_set_DRBG_type(3)> call before accessing the random number generation
 infrastructure.
 
-The two set functions, operate on the the current thread.  If you want to
+The two set functions, operate on the current thread.  If you want to
 use the same random number generator across all threads, each thread
 must individually call the set functions.
 
index bfcf0d1a144ef591ba2ae222eed0039a9721b901..4835db7f84a9167e638a8ee4ba0a7425e9113dc9 100644 (file)
@@ -1104,7 +1104,7 @@ L<EVP_DecryptInit_ex(3)>, L<EVP_DecryptUpdate(3)> and L<EVP_DecryptFinal_ex(3)>.
 
 Use of low-level digest functions such as L<SHA1_Init(3)> have been
 informally discouraged from use for a long time.  Applications should instead
-use the the high level EVP APIs L<EVP_DigestInit_ex(3)>, L<EVP_DigestUpdate(3)>
+use the high level EVP APIs L<EVP_DigestInit_ex(3)>, L<EVP_DigestUpdate(3)>
 and L<EVP_DigestFinal_ex(3)>, or the quick one-shot L<EVP_Q_digest(3)>.
 
 Note that the functions L<SHA1(3)>, L<SHA224(3)>, L<SHA256(3)>, L<SHA384(3)>
index 96c289f7e7ecb5879d5977732bd00c5634dfd8b9..c8cdc668989277de263ae9a13ad1c2eb2a1401ab 100644 (file)
@@ -220,7 +220,7 @@ static int port_update_poll_desc(QUIC_PORT *port, BIO *net_bio, int for_write)
      * single pollable currently. In the future, once complete polling
      * infrastructure has been implemented, this limitation can be removed.
      *
-     * For now, just update the descriptor on the the engine's reactor as we are
+     * For now, just update the descriptor on the engine's reactor as we are
      * guaranteed to be the only port under it.
      */
     if (for_write)