aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/kdf/hkdf/hkdf.h2
-rw-r--r--src/lib/kdf/kdf1/kdf1.h2
-rw-r--r--src/lib/kdf/kdf1_iso18033/kdf1_iso18033.h2
-rw-r--r--src/lib/kdf/kdf2/kdf2.h2
-rw-r--r--src/lib/kdf/prf_tls/prf_tls.h2
-rw-r--r--src/lib/kdf/sp800_108/sp800_108.h2
-rw-r--r--src/lib/mac/cbc_mac/cbc_mac.h2
-rw-r--r--src/lib/mac/cmac/cmac.h2
-rw-r--r--src/lib/stream/ctr/ctr.h2
-rw-r--r--src/lib/stream/ofb/ofb.h2
10 files changed, 10 insertions, 10 deletions
diff --git a/src/lib/kdf/hkdf/hkdf.h b/src/lib/kdf/hkdf/hkdf.h
index a66d68da4..ea17f8c01 100644
--- a/src/lib/kdf/hkdf/hkdf.h
+++ b/src/lib/kdf/hkdf/hkdf.h
@@ -23,7 +23,7 @@ class BOTAN_DLL HKDF final : public KDF
{
public:
/**
- * @param prf underlying MAC algorithm
+ * @param prf MAC algorithm to use
*/
explicit HKDF(MessageAuthenticationCode* prf) : m_prf(prf) {}
diff --git a/src/lib/kdf/kdf1/kdf1.h b/src/lib/kdf/kdf1/kdf1.h
index b42478260..db8b3b062 100644
--- a/src/lib/kdf/kdf1/kdf1.h
+++ b/src/lib/kdf/kdf1/kdf1.h
@@ -29,7 +29,7 @@ class BOTAN_DLL KDF1 final : public KDF
const byte label[], size_t label_len) const override;
/**
- * @param h underlying hash function
+ * @param h hash function to use
*/
explicit KDF1(HashFunction* h) : m_hash(h) {}
private:
diff --git a/src/lib/kdf/kdf1_iso18033/kdf1_iso18033.h b/src/lib/kdf/kdf1_iso18033/kdf1_iso18033.h
index 3d6047153..08e2d5c61 100644
--- a/src/lib/kdf/kdf1_iso18033/kdf1_iso18033.h
+++ b/src/lib/kdf/kdf1_iso18033/kdf1_iso18033.h
@@ -29,7 +29,7 @@ class BOTAN_DLL KDF1_18033 : public KDF
const byte label[], size_t label_len) const override;
/**
- * @param h underlying hash function
+ * @param h hash function to use
*/
KDF1_18033(HashFunction* h) : m_hash(h) {}
private:
diff --git a/src/lib/kdf/kdf2/kdf2.h b/src/lib/kdf/kdf2/kdf2.h
index e76b4574c..2ead49530 100644
--- a/src/lib/kdf/kdf2/kdf2.h
+++ b/src/lib/kdf/kdf2/kdf2.h
@@ -29,7 +29,7 @@ class BOTAN_DLL KDF2 final : public KDF
const byte label[], size_t label_len) const override;
/**
- * @param h underlying hash function
+ * @param h hash function to use
*/
explicit KDF2(HashFunction* h) : m_hash(h) {}
private:
diff --git a/src/lib/kdf/prf_tls/prf_tls.h b/src/lib/kdf/prf_tls/prf_tls.h
index bf2b9ea66..58cd5758e 100644
--- a/src/lib/kdf/prf_tls/prf_tls.h
+++ b/src/lib/kdf/prf_tls/prf_tls.h
@@ -50,7 +50,7 @@ class BOTAN_DLL TLS_12_PRF final : public KDF
const byte label[], size_t label_len) const override;
/**
- * @param mac underlying MAC algorithm
+ * @param mac MAC algorithm to use
*/
explicit TLS_12_PRF(MessageAuthenticationCode* mac) : m_mac(mac) {}
diff --git a/src/lib/kdf/sp800_108/sp800_108.h b/src/lib/kdf/sp800_108/sp800_108.h
index 3a5b33575..2d4d028b2 100644
--- a/src/lib/kdf/sp800_108/sp800_108.h
+++ b/src/lib/kdf/sp800_108/sp800_108.h
@@ -46,7 +46,7 @@ class BOTAN_DLL SP800_108_Counter : public KDF
const byte label[], size_t label_len) const override;
/**
- * @param mac underlying MAC algorithm
+ * @param mac MAC algorithm to use
*/
SP800_108_Counter(MessageAuthenticationCode* mac) : m_prf(mac) {}
diff --git a/src/lib/mac/cbc_mac/cbc_mac.h b/src/lib/mac/cbc_mac/cbc_mac.h
index cd2ebd18f..4a3dece95 100644
--- a/src/lib/mac/cbc_mac/cbc_mac.h
+++ b/src/lib/mac/cbc_mac/cbc_mac.h
@@ -30,7 +30,7 @@ class BOTAN_DLL CBC_MAC final : public MessageAuthenticationCode
}
/**
- * @param cipher the underlying block cipher to use
+ * @param cipher the block cipher to use
*/
explicit CBC_MAC(BlockCipher* cipher);
diff --git a/src/lib/mac/cmac/cmac.h b/src/lib/mac/cmac/cmac.h
index 0e973b79d..ada55ea6b 100644
--- a/src/lib/mac/cmac/cmac.h
+++ b/src/lib/mac/cmac/cmac.h
@@ -38,7 +38,7 @@ class BOTAN_DLL CMAC final : public MessageAuthenticationCode
static secure_vector<byte> poly_double(const secure_vector<byte>& in);
/**
- * @param cipher the underlying block cipher to use
+ * @param cipher the block cipher to use
*/
explicit CMAC(BlockCipher* cipher);
diff --git a/src/lib/stream/ctr/ctr.h b/src/lib/stream/ctr/ctr.h
index 5d5556254..385edac54 100644
--- a/src/lib/stream/ctr/ctr.h
+++ b/src/lib/stream/ctr/ctr.h
@@ -41,7 +41,7 @@ class BOTAN_DLL CTR_BE final : public StreamCipher
static CTR_BE* make(const Spec& spec);
/**
- * @param cipher the underlying block cipher to use
+ * @param cipher the block cipher to use
*/
explicit CTR_BE(BlockCipher* cipher);
diff --git a/src/lib/stream/ofb/ofb.h b/src/lib/stream/ofb/ofb.h
index 127a06578..7d77bae7a 100644
--- a/src/lib/stream/ofb/ofb.h
+++ b/src/lib/stream/ofb/ofb.h
@@ -41,7 +41,7 @@ class BOTAN_DLL OFB final : public StreamCipher
static OFB* make(const Spec& spec);
/**
- * @param cipher the underlying block cipher to use
+ * @param cipher the block cipher to use
*/
explicit OFB(BlockCipher* cipher);