aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/gost_3411/gost_3411.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-10-12 23:29:55 +0000
committerlloyd <[email protected]>2010-10-12 23:29:55 +0000
commit2af9ba577730f071eef44b3ba492c3bfad0a8ec6 (patch)
tree92a4c4e973756225d42bb99a99110b2669be7299 /src/hash/gost_3411/gost_3411.h
parent97e8d6086171772cd5e45bcf2f5b1ea1e38e6bf5 (diff)
Use size_t for BufferedComputation::add_data
Diffstat (limited to 'src/hash/gost_3411/gost_3411.h')
-rw-r--r--src/hash/gost_3411/gost_3411.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hash/gost_3411/gost_3411.h b/src/hash/gost_3411/gost_3411.h
index 5d26e8557..693b900d2 100644
--- a/src/hash/gost_3411/gost_3411.h
+++ b/src/hash/gost_3411/gost_3411.h
@@ -25,9 +25,9 @@ class BOTAN_DLL GOST_34_11 : public HashFunction
GOST_34_11();
private:
- void compress_n(const byte input[], u32bit blocks);
+ void compress_n(const byte input[], size_t blocks);
- void add_data(const byte[], u32bit);
+ void add_data(const byte[], size_t);
void final_result(byte[]);
GOST_28147_89 cipher;