summaryrefslogtreecommitdiff
path: root/ccm.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-10-12 02:57:28 -0400
committerJeffrey Walton <noloader@gmail.com>2016-10-12 02:57:28 -0400
commit93a6758fd99f24b56baffc23db0270da3d537a92 (patch)
treee37ca704e6fdf598615e7b25abfa38a6c866d248 /ccm.h
parentbd2b022d305d12bf8da7fc7de0ed7a61b066dc5a (diff)
downloadcryptopp-git-93a6758fd99f24b56baffc23db0270da3d537a92.tar.gz
Updated documentation
Diffstat (limited to 'ccm.h')
-rw-r--r--ccm.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ccm.h b/ccm.h
index 56815f8e..722bb27d 100644
--- a/ccm.h
+++ b/ccm.h
@@ -31,10 +31,10 @@ public:
{return GetBlockCipher().MaxKeyLength();}
size_t DefaultKeyLength() const
{return GetBlockCipher().DefaultKeyLength();}
- size_t GetValidKeyLength(size_t n) const
- {return GetBlockCipher().GetValidKeyLength(n);}
- bool IsValidKeyLength(size_t n) const
- {return GetBlockCipher().IsValidKeyLength(n);}
+ size_t GetValidKeyLength(size_t keylength) const
+ {return GetBlockCipher().GetValidKeyLength(keylength);}
+ bool IsValidKeyLength(size_t keylength) const
+ {return GetBlockCipher().IsValidKeyLength(keylength);}
unsigned int OptimalDataAlignment() const
{return GetBlockCipher().OptimalDataAlignment();}
IV_Requirement IVRequirement() const