aboutsummaryrefslogtreecommitdiffstats
path: root/src/pbkdf
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-08-13 20:35:45 +0000
committerlloyd <[email protected]>2010-08-13 20:35:45 +0000
commit7777019a00df754e5e61f8d26af86014a02f8f92 (patch)
treecf4175d6917dac8f3a95e4ce8a82f0901b9b39f9 /src/pbkdf
parent2cae6ec17984ad016f973d5925860278e575b3f4 (diff)
Fix Doxygen comment in PBKDF2 constructor
Diffstat (limited to 'src/pbkdf')
-rw-r--r--src/pbkdf/pbkdf2/pbkdf2.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pbkdf/pbkdf2/pbkdf2.h b/src/pbkdf/pbkdf2/pbkdf2.h
index 2b25a7b1d..8b50b4a67 100644
--- a/src/pbkdf/pbkdf2/pbkdf2.h
+++ b/src/pbkdf/pbkdf2/pbkdf2.h
@@ -36,9 +36,9 @@ class BOTAN_DLL PKCS5_PBKDF2 : public PBKDF
/**
* Create a PKCS #5 instance using the specified message auth code
- * @param mac the MAC to use
+ * @param mac_fn the MAC to use
*/
- PKCS5_PBKDF2(MessageAuthenticationCode* m) : mac(m) {}
+ PKCS5_PBKDF2(MessageAuthenticationCode* mac_fn) : mac(mac_fn) {}
/**
* Destructor