aboutsummaryrefslogtreecommitdiffstats
path: root/src/mac/hmac/hmac.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-06-15 22:28:02 +0000
committerlloyd <[email protected]>2010-06-15 22:28:02 +0000
commit7dbef9e3e2efd2354bb4ca97fca0d720a8957db4 (patch)
treee6d563d6658a93ba5caffcf8975a065d98ca6c38 /src/mac/hmac/hmac.h
parent416695f7363c4e93eaeaea23427a1fed3ad73cab (diff)
More Doxygen fixes
Diffstat (limited to 'src/mac/hmac/hmac.h')
-rw-r--r--src/mac/hmac/hmac.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mac/hmac/hmac.h b/src/mac/hmac/hmac.h
index 62bb69853..43a5d22a4 100644
--- a/src/mac/hmac/hmac.h
+++ b/src/mac/hmac/hmac.h
@@ -13,7 +13,7 @@
namespace Botan {
-/*
+/**
* HMAC
*/
class BOTAN_DLL HMAC : public MessageAuthenticationCode
@@ -23,6 +23,9 @@ class BOTAN_DLL HMAC : public MessageAuthenticationCode
std::string name() const;
MessageAuthenticationCode* clone() const;
+ /**
+ * @param hash the hash to use for HMACing
+ */
HMAC(HashFunction* hash);
~HMAC() { delete hash; }
private: