summaryrefslogtreecommitdiff
path: root/hex.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 /hex.h
parent50881b3fb35a9102195726a05be1b0b02070d54f (diff)
downloadcryptopp-git-f4d8b054b373098e170453bab6ca411cc6021dc6.tar.gz
Updated documentation
Diffstat (limited to 'hex.h')
-rw-r--r--hex.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/hex.h b/hex.h
index 2668b62c..0e533017 100644
--- a/hex.h
+++ b/hex.h
@@ -19,13 +19,13 @@ public:
//! \brief Construct a HexEncoder
//! \param attachment a BufferedTrasformation to attach to this object
//! \param uppercase a flag indicating uppercase output
- //! \param groupSize the size of the grouping
+ //! \param groupSize the size of the output grouping
//! \param separator the separator to use between groups
//! \param terminator the terminator append after processing
- HexEncoder(BufferedTransformation *attachment = NULL, bool uppercase = true, int outputGroupSize = 0, const std::string &separator = ":", const std::string &terminator = "")
+ HexEncoder(BufferedTransformation *attachment = NULL, bool uppercase = true, int groupSize = 0, const std::string &separator = ":", const std::string &terminator = "")
: SimpleProxyFilter(new BaseN_Encoder(new Grouper), attachment)
{
- IsolatedInitialize(MakeParameters(Name::Uppercase(), uppercase)(Name::GroupSize(), outputGroupSize)(Name::Separator(), ConstByteArrayParameter(separator))(Name::Terminator(), ConstByteArrayParameter(terminator)));
+ IsolatedInitialize(MakeParameters(Name::Uppercase(), uppercase)(Name::GroupSize(), groupSize)(Name::Separator(), ConstByteArrayParameter(separator))(Name::Terminator(), ConstByteArrayParameter(terminator)));
}
void IsolatedInitialize(const NameValuePairs &parameters);