aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/cli.rst2
-rw-r--r--doc/old_news.rst4
-rw-r--r--src/lib/pubkey/xmss/xmss_common_ops.h4
-rw-r--r--src/lib/pubkey/xmss/xmss_wots.h12
-rw-r--r--src/tests/unit_ecdsa.cpp2
5 files changed, 12 insertions, 12 deletions
diff --git a/doc/cli.rst b/doc/cli.rst
index 37698cef7..8eafece33 100644
--- a/doc/cli.rst
+++ b/doc/cli.rst
@@ -207,7 +207,7 @@ TLS Server/Client
-----------------------
The ``--policy=`` argument of the TLS commands specifies the TLS policy to use.
-The policy can be any of the the strings "default", "suiteb_128", "suiteb_192",
+The policy can be any of the strings "default", "suiteb_128", "suiteb_192",
"bsi", "strict", or "all" to denote built-in policies, or it can name a file
from which a policy description will be read.
diff --git a/doc/old_news.rst b/doc/old_news.rst
index 161bf487b..a5afd369b 100644
--- a/doc/old_news.rst
+++ b/doc/old_news.rst
@@ -1189,7 +1189,7 @@ Version 1.11.16, 2015-03-29
Unfortunately the semantics of the exchange have changed with ALPN. Using
NPN, the server offered a list of protocols it advertised, and then the
client chose its favorite. With ALPN, the client offers a list of protocols
- and the server chooses. The the signatures of both the TLS::Client and
+ and the server chooses. The signatures of both the TLS::Client and
TLS::Server constructors have changed to support this new flow.
* Optimized ECDSA signature verification thanks to an observation by
@@ -2402,7 +2402,7 @@ Version 1.9.15, 2011-03-21
causing a illegal instruction crash.
* Improve detection and autoconfiguration for ARM processors. Thanks
- go out to the the `Tahoe-LAFS Software Foundation
+ go out to the `Tahoe-LAFS Software Foundation
<http://tahoe-lafs.org>`_, who donated a Sheevaplug that I'll be
using to figure out how to make the cryptographic primitives
Tahoe-LAFS relies on faster, particularly targeting the ARMv5TE.
diff --git a/src/lib/pubkey/xmss/xmss_common_ops.h b/src/lib/pubkey/xmss/xmss_common_ops.h
index d04e65242..9a3223df4 100644
--- a/src/lib/pubkey/xmss/xmss_common_ops.h
+++ b/src/lib/pubkey/xmss/xmss_common_ops.h
@@ -39,7 +39,7 @@ class XMSS_Common_Ops
* @param[in] right Right half of the hash function input.
* @param[in] adrs Adress of the hash function call.
* @param[in] seed The seed for G.
- * @param[in] hash Instance of XMSS_Hash, that may only by the thead
+ * @param[in] hash Instance of XMSS_Hash, that may only by the thread
* executing generate_public_key.
* @param[in] params
**/
@@ -66,7 +66,7 @@ class XMSS_Common_Ops
* @param[in] adrs Address encoding the address of the L-Tree
* @param[in] seed The seed generated during the public key generation.
* @param[in] hash Instance of XMSS_Hash, that may only be used by the
- * thead executing create_l_tree.
+ * thread executing create_l_tree.
* @param[in] params
**/
static void create_l_tree(secure_vector<uint8_t>& result,
diff --git a/src/lib/pubkey/xmss/xmss_wots.h b/src/lib/pubkey/xmss/xmss_wots.h
index 060d54711..dc1c2ba78 100644
--- a/src/lib/pubkey/xmss/xmss_wots.h
+++ b/src/lib/pubkey/xmss/xmss_wots.h
@@ -391,7 +391,7 @@ class XMSS_WOTS_PublicKey : virtual public Public_Key
* @param steps A number of steps.
* @param adrs An OTS Hash Address.
* @param public_seed A public seed.
- * @param hash Instance of XMSS_Hash, that may only by the thead
+ * @param hash Instance of XMSS_Hash, that may only by the thread
* executing chain.
**/
void chain(secure_vector<uint8_t>& x,
@@ -551,7 +551,7 @@ class XMSS_WOTS_PrivateKey final : public virtual XMSS_WOTS_PublicKey,
*
* @param i Index of the key to retrieve.
* @param hash Instance of XMSS_Hash, that may only be used by the
- * thead executing at.
+ * thread executing at.
*
* @return WOTS secret key.
**/
@@ -580,7 +580,7 @@ class XMSS_WOTS_PrivateKey final : public virtual XMSS_WOTS_PublicKey,
*
* @param adrs The address of the key to retrieve.
* @param hash Instance of XMSS_Hash, that may only be used by the
- * thead executing at.
+ * thread executing at.
*
* @return WOTS secret key.
**/
@@ -620,7 +620,7 @@ class XMSS_WOTS_PrivateKey final : public virtual XMSS_WOTS_PublicKey,
* public key generation.
* @param adrs Hash function address encoding the address of
* the WOTS+ key pair within a greater structure.
- * @param hash Instance of XMSS_Hash, that may only by the thead
+ * @param hash Instance of XMSS_Hash, that may only by the thread
* executing generate_public_key.
**/
void generate_public_key(XMSS_WOTS_PublicKey& pub_key,
@@ -674,7 +674,7 @@ class XMSS_WOTS_PrivateKey final : public virtual XMSS_WOTS_PublicKey,
* @param adrs An OTS hash address identifying the WOTS+ key pair
* used for signing.
* @param hash Instance of XMSS_Hash, that may only be used by the
- * thead executing sign.
+ * thread executing sign.
*
* @return signature for msg.
**/
@@ -736,7 +736,7 @@ class XMSS_WOTS_PrivateKey final : public virtual XMSS_WOTS_PublicKey,
*
* @param private_seed Uniformly random n-byte value.
* @param[in] hash Instance of XMSS_Hash, that may only be used by the
- * thead executing generate.
+ * thread executing generate.
*
* @returns a vector of length key_size() of vectors of n bytes length
* containing uniformly random data.
diff --git a/src/tests/unit_ecdsa.cpp b/src/tests/unit_ecdsa.cpp
index 83e6e3a3e..f0ccc08f8 100644
--- a/src/tests/unit_ecdsa.cpp
+++ b/src/tests/unit_ecdsa.cpp
@@ -33,7 +33,7 @@ namespace {
#if defined(BOTAN_HAS_ECDSA)
/**
-* Tests whether the the signing routine will work correctly in case
+* Tests whether the signing routine will work correctly in case
* the integer e that is constructed from the message (thus the hash
* value) is larger than n, the order of the base point. Tests the
* signing function of the pk signer object