diff options
author | lloyd <[email protected]> | 2010-06-15 22:28:02 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-06-15 22:28:02 +0000 |
commit | 7dbef9e3e2efd2354bb4ca97fca0d720a8957db4 (patch) | |
tree | e6d563d6658a93ba5caffcf8975a065d98ca6c38 /src/mac/hmac/hmac.h | |
parent | 416695f7363c4e93eaeaea23427a1fed3ad73cab (diff) |
More Doxygen fixes
Diffstat (limited to 'src/mac/hmac/hmac.h')
-rw-r--r-- | src/mac/hmac/hmac.h | 5 |
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: |