summaryrefslogtreecommitdiff
path: root/blake2.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-04-20 19:03:46 -0400
committerJeffrey Walton <noloader@gmail.com>2016-04-20 19:03:46 -0400
commitf4d8b054b373098e170453bab6ca411cc6021dc6 (patch)
treeb6bac263ea9e55e6a2af42c80b67dbb474641f6d /blake2.h
parent50881b3fb35a9102195726a05be1b0b02070d54f (diff)
downloadcryptopp-git-f4d8b054b373098e170453bab6ca411cc6021dc6.tar.gz
Updated documentation
Diffstat (limited to 'blake2.h')
-rw-r--r--blake2.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/blake2.h b/blake2.h
index fe4628dd..f0be8d36 100644
--- a/blake2.h
+++ b/blake2.h
@@ -271,6 +271,7 @@ public:
//! \brief Construct a BLAKE2b hash
//! \param digestSize the digest size, in bytes
+ //! \param treeMode flag indicating tree mode
BLAKE2b(bool treeMode=false, unsigned int digestSize = DIGESTSIZE) : ThisBase(treeMode, digestSize) {}
//! \brief Construct a BLAKE2b hash
@@ -305,6 +306,7 @@ public:
//! \brief Construct a BLAKE2b hash
//! \param digestSize the digest size, in bytes
+ //! \param treeMode flag indicating tree mode
BLAKE2s(bool treeMode=false, unsigned int digestSize = DIGESTSIZE) : ThisBase(treeMode, digestSize) {}
//! \brief Construct a BLAKE2b hash
@@ -325,4 +327,3 @@ public:
NAMESPACE_END
#endif
-