diff options
author | lloyd <[email protected]> | 2010-08-13 20:35:45 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-08-13 20:35:45 +0000 |
commit | 7777019a00df754e5e61f8d26af86014a02f8f92 (patch) | |
tree | cf4175d6917dac8f3a95e4ce8a82f0901b9b39f9 /src/pbkdf | |
parent | 2cae6ec17984ad016f973d5925860278e575b3f4 (diff) |
Fix Doxygen comment in PBKDF2 constructor
Diffstat (limited to 'src/pbkdf')
-rw-r--r-- | src/pbkdf/pbkdf2/pbkdf2.h | 4 |
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 |