summaryrefslogtreecommitdiff
path: root/poly1305.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2019-02-22 08:38:20 -0500
committerJeffrey Walton <noloader@gmail.com>2019-02-22 08:38:20 -0500
commit95bc90adc4b4afb3408a9b7f29ff949b494a1e1c (patch)
treecd39fafa57de15e1d61964e4f36266aecb6c0cf5 /poly1305.cpp
parent3185e93fe303369280b23e2dfa65ff85a875c2cb (diff)
downloadcryptopp-git-95bc90adc4b4afb3408a9b7f29ff949b494a1e1c.tar.gz
Clear unused warnings with MSVC
Diffstat (limited to 'poly1305.cpp')
-rw-r--r--poly1305.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/poly1305.cpp b/poly1305.cpp
index e22cb7f5..9f3f97aa 100644
--- a/poly1305.cpp
+++ b/poly1305.cpp
@@ -314,7 +314,7 @@ void Poly1305_Base<T>::Restart()
void Poly1305TLS_Base::UncheckedSetKey(const byte *key, unsigned int length, const NameValuePairs &params)
{
- CRYPTOPP_UNUSED(params);
+ CRYPTOPP_UNUSED(params); CRYPTOPP_UNUSED(length);
CRYPTOPP_ASSERT(key && length >= 32);
// key is {r,s} pair. r is the additional key that gets clamped, s is the nonce.