summaryrefslogtreecommitdiff
path: root/tiger.h
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2005-07-12 04:23:32 +0000
committerweidai <weidai11@users.noreply.github.com>2005-07-12 04:23:32 +0000
commit1db8ea50840eb47f0f7d8f3c30d8e0916932ce90 (patch)
tree4b03760892a97a9bc452ebe8b7793bbebd402ad4 /tiger.h
parent31068bd68590654dc218bbb183a2ca71bb4af08b (diff)
downloadcryptopp-git-1db8ea50840eb47f0f7d8f3c30d8e0916932ce90.tar.gz
port to MSVC .NET 2005 beta 2
Diffstat (limited to 'tiger.h')
-rw-r--r--tiger.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tiger.h b/tiger.h
index 9f0f83a6..66d1da2a 100644
--- a/tiger.h
+++ b/tiger.h
@@ -15,7 +15,7 @@ class Tiger : public IteratedHashWithStaticTransform<word64, LittleEndian, 64, 2
public:
static void InitState(HashWordType *state);
static void Transform(word64 *digest, const word64 *data);
- void TruncatedFinal(byte *hash, unsigned int size);
+ void TruncatedFinal(byte *hash, size_t size);
static const char * StaticAlgorithmName() {return "Tiger";}
protected: