From 465fcdcf7f853523254b77687caa667f3575a259 Mon Sep 17 00:00:00 2001 From: weidai Date: Mon, 11 Dec 2006 09:18:19 +0000 Subject: fix incorrect type in UncheckedSetKey parameter git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@254 57ff6487-cd31-0410-9ec3-f628ee90f5f0 --- cbcmac.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cbcmac.cpp') diff --git a/cbcmac.cpp b/cbcmac.cpp index e262535..dfac071 100644 --- a/cbcmac.cpp +++ b/cbcmac.cpp @@ -6,7 +6,7 @@ NAMESPACE_BEGIN(CryptoPP) -void CBC_MAC_Base::UncheckedSetKey(const byte *key, size_t length, const NameValuePairs ¶ms) +void CBC_MAC_Base::UncheckedSetKey(const byte *key, unsigned int length, const NameValuePairs ¶ms) { AccessCipher().SetKey(key, length, params); m_reg.CleanNew(AccessCipher().BlockSize()); -- cgit v1.2.1