aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/kdf
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/kdf')
-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
6 files changed, 6 insertions, 6 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) {}