From a5621a9de9e2a93551ad505d5c36ace717deef72 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sun, 24 Apr 2016 21:01:22 -0400 Subject: [PATCH] Fixed documentation typo --- blake2.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blake2.h b/blake2.h index 800a8d94..43fc24e2 100644 --- a/blake2.h +++ b/blake2.h @@ -311,12 +311,12 @@ public: typedef BLAKE2_ParameterBlock ParameterBlock; CRYPTOPP_COMPILE_ASSERT(sizeof(ParameterBlock) == 32); - //! \brief Construct a BLAKE2b hash + //! \brief Construct a BLAKE2s 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 + //! \brief Construct a BLAKE2s hash //! \param key a byte array used to key the cipher //! \param keyLength the size of the byte array //! \param salt a byte array used as salt