summaryrefslogtreecommitdiff
path: root/pubkey.h
diff options
context:
space:
mode:
authorklemens <ka7@github.com>2016-12-27 18:34:57 +0100
committerklemens <ka7@github.com>2016-12-27 18:34:57 +0100
commit5a5c6330735798ed7670cfe1d28986d0a88fb6a9 (patch)
tree5c351b3fbc98cfeeb3d9c7fdd0fc926724223e30 /pubkey.h
parent06f79d904d5d4a801910e31bcca2846e5afbeaff (diff)
downloadcryptopp-git-5a5c6330735798ed7670cfe1d28986d0a88fb6a9.tar.gz
spelling fixes
Diffstat (limited to 'pubkey.h')
-rw-r--r--pubkey.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/pubkey.h b/pubkey.h
index 7587a8ab..aadc3c26 100644
--- a/pubkey.h
+++ b/pubkey.h
@@ -839,12 +839,12 @@ public:
//! \brief Retrieves the order of the group
//! \return the order of the group
- //! \details Either GetGroupOrder() or GetCofactor() must be overriden in a derived class.
+ //! \details Either GetGroupOrder() or GetCofactor() must be overridden in a derived class.
virtual Integer GetGroupOrder() const {return GetSubgroupOrder()*GetCofactor();}
//! \brief Retrieves the cofactor
//! \return the cofactor
- //! \details Either GetGroupOrder() or GetCofactor() must be overriden in a derived class.
+ //! \details Either GetGroupOrder() or GetCofactor() must be overridden in a derived class.
virtual Integer GetCofactor() const {return GetGroupOrder()/GetSubgroupOrder();}
//! \brief Retrieves the encoded element's size
@@ -939,7 +939,7 @@ private:
mutable unsigned int m_validationLevel;
};
-//! \brief Base implmentation of Discrete Log (DL) group parameters
+//! \brief Base implementation of Discrete Log (DL) group parameters
//! \tparam GROUP_PRECOMP group precomputation class
//! \tparam BASE_PRECOMP fixed base precomputation class
//! \tparam BASE class or type of an element
@@ -1692,7 +1692,7 @@ public:
//! \brief Discrete Log (DL) scheme options
//! \tparam T1 algorithm information
-//! \tparam T2 group paramters for the scheme
+//! \tparam T2 group parameters for the scheme
template <class T1, class T2>
struct DL_SchemeOptionsBase
{