summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2004-04-08 02:02:29 +0000
committerweidai <weidai11@users.noreply.github.com>2004-04-08 02:02:29 +0000
commit703d75755f8bc923cbd453300bf330c8ca59d86b (patch)
tree7cb14b9475be832b53b38a7758073f024f244313
parentea022976c4b7fe98c8b0f71ce97dcc4616973284 (diff)
downloadcryptopp-git-703d75755f8bc923cbd453300bf330c8ca59d86b.tar.gz
avoid hash keyword
-rw-r--r--bench.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/bench.cpp b/bench.cpp
index c00bc069..65480ad4 100644
--- a/bench.cpp
+++ b/bench.cpp
@@ -136,7 +136,7 @@ void BenchMark(const char *name, StreamTransformation &cipher, double timeTotal)
OutputResultBytes(name, double(blocks) * BUF_SIZE, timeTaken);
}
-void BenchMark(const char *name, HashTransformation &hash, double timeTotal)
+void BenchMark(const char *name, HashTransformation &ht, double timeTotal)
{
const int BUF_SIZE=1024;
SecByteBlock buf(BUF_SIZE);
@@ -150,7 +150,7 @@ void BenchMark(const char *name, HashTransformation &hash, double timeTotal)
{
blocks *= 2;
for (; i<blocks; i++)
- hash.Update(buf, BUF_SIZE);
+ ht.Update(buf, BUF_SIZE);
timeTaken = double(clock() - start) / CLOCK_TICKS_PER_SECOND;
}
while (timeTaken < 2.0/3*timeTotal);