From d5ebf62bed594d1fe6ab616a6bbcbcf0a5892d47 Mon Sep 17 00:00:00 2001 From: weidai Date: Tue, 12 Jul 2005 04:23:32 +0000 Subject: port to MSVC .NET 2005 beta 2 git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@198 57ff6487-cd31-0410-9ec3-f628ee90f5f0 --- wake.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'wake.h') diff --git a/wake.h b/wake.h index 56a266d..5186a50 100644 --- a/wake.h +++ b/wake.h @@ -38,12 +38,12 @@ class CRYPTOPP_NO_VTABLE WAKE_Policy , protected WAKE_Base { protected: - void CipherSetKey(const NameValuePairs ¶ms, const byte *key, unsigned int length); + void CipherSetKey(const NameValuePairs ¶ms, const byte *key, size_t length); // CFB byte * GetRegisterBegin() {return (byte *)&r6;} - void Iterate(byte *output, const byte *input, CipherDir dir, unsigned int iterationCount); + void Iterate(byte *output, const byte *input, CipherDir dir, size_t iterationCount); // OFB - void OperateKeystream(KeystreamOperation operation, byte *output, const byte *input, unsigned int iterationCount); + void OperateKeystream(KeystreamOperation operation, byte *output, const byte *input, size_t iterationCount); bool IsRandomAccess() const {return false;} }; -- cgit v1.2.1