aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/pbkdf
diff options
context:
space:
mode:
authorRenĂ© Korthaus <[email protected]>2016-10-18 16:38:50 +0200
committerRenĂ© Korthaus <[email protected]>2016-10-19 09:13:45 +0200
commitda2e26b15f7f6882768f1cb7e8a5be1b1893bf8a (patch)
treeb83ce7adb7b8837981c210662675941febc645c4 /src/lib/pbkdf
parent99d71e5693f45c2b34528158ad8d8b641bcc87e3 (diff)
Fix doxygen warnings [ci skip]
Diffstat (limited to 'src/lib/pbkdf')
-rw-r--r--src/lib/pbkdf/pbkdf.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/pbkdf/pbkdf.h b/src/lib/pbkdf/pbkdf.h
index 0f7d31e01..63a8a82f0 100644
--- a/src/lib/pbkdf/pbkdf.h
+++ b/src/lib/pbkdf/pbkdf.h
@@ -99,7 +99,7 @@ class BOTAN_DLL PBKDF
* @param salt_len length of salt in bytes
* @param msec if iterations is zero, then instead the PBKDF is
* run until msec milliseconds has passed.
- * @param set to the number iterations executed
+ * @param iterations set to the number iterations executed
*/
void pbkdf_timed(byte out[], size_t out_len,
const std::string& passphrase,
@@ -131,7 +131,7 @@ class BOTAN_DLL PBKDF
* @param salt_len length of salt in bytes
* @param msec if iterations is zero, then instead the PBKDF is
* run until msec milliseconds has passed.
- * @param set to the number iterations executed
+ * @param iterations set to the number iterations executed
* @return the derived key
*/
secure_vector<byte> pbkdf_timed(size_t out_len,
@@ -214,6 +214,7 @@ class BOTAN_DLL PBKDF
/**
* Password based key derivation function factory method
* @param algo_spec the name of the desired PBKDF algorithm
+* @param provider the provider to use
* @return pointer to newly allocated object of that type
*/
inline PBKDF* get_pbkdf(const std::string& algo_spec,