summaryrefslogtreecommitdiff
path: root/seckey.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-11-17 09:16:09 -0500
committerJeffrey Walton <noloader@gmail.com>2016-11-17 09:16:09 -0500
commitcb7dbd32ec2aea5a6ccbcb5d37580d60dceeeee1 (patch)
treef0cb908cfc8b8f9009b0dbb72bb7379933c5f93e /seckey.h
parent16941931015aa3aeb079eb4c9f8b83a702de6d0d (diff)
downloadcryptopp-git-cb7dbd32ec2aea5a6ccbcb5d37580d60dceeeee1.tar.gz
Updated documentation
Diffstat (limited to 'seckey.h')
-rw-r--r--seckey.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/seckey.h b/seckey.h
index 1cb2a0a1..b512a3a2 100644
--- a/seckey.h
+++ b/seckey.h
@@ -55,7 +55,7 @@ public:
//! \brief Inherited by algorithms with variable number of rounds
//! \tparam D Default number of rounds
//! \tparam N Minimum number of rounds
-//! \tparam D Maximum number of rounds
+//! \tparam M Maximum number of rounds
template <unsigned int D, unsigned int N=1, unsigned int M=INT_MAX> // use INT_MAX here because enums are treated as signed ints
class VariableRounds
{
@@ -155,7 +155,7 @@ public:
//! \tparam D Default key length, in bytes
//! \tparam N Minimum key length, in bytes
//! \tparam M Maximum key length, in bytes
-//! \tparam M Default key length multiple, in bytes. The default multiple is 1.
+//! \tparam Q Default key length multiple, in bytes. The default multiple is 1.
//! \tparam IV_REQ the \ref SimpleKeyingInterface::IV_Requirement "IV requirements"
//! \tparam IV_L default IV length, in bytes. The default length is 0.
//! \sa SimpleKeyingInterface