summaryrefslogtreecommitdiff
path: root/bench.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2020-12-15 23:03:10 -0500
committerJeffrey Walton <noloader@gmail.com>2020-12-15 23:03:10 -0500
commitbb29b5e10ee2b4ba2527e7b468800f023ea3d542 (patch)
tree18f4eca448027f24968fc466b15695cdca3d92af /bench.h
parentd7b2982e32150096a454588fa3ad6a0d9f08f955 (diff)
downloadcryptopp-git-bb29b5e10ee2b4ba2527e7b468800f023ea3d542.tar.gz
Use better names than Benchmark1, Benchmark2, etc
Diffstat (limited to 'bench.h')
-rw-r--r--bench.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/bench.h b/bench.h
index 31a0d69a..2c30e971 100644
--- a/bench.h
+++ b/bench.h
@@ -76,13 +76,13 @@ void BenchmarkWithCommand(int argc, const char* const argv[]);
// Top level, prints preamble and postamble
void Benchmark(Test::TestClass suites, double t, double hertz);
// Unkeyed systems
-void Benchmark1(double t, double hertz);
+void BenchmarkUnkeyedAlgorithms(double t, double hertz);
// Shared key systems
-void Benchmark2(double t, double hertz);
+void BenchmarkSharedKeyedAlgorithms(double t, double hertz);
// Public key systems over integers
-void Benchmark3(double t, double hertz);
+void BenchmarkPublicKeyAlgorithms(double t, double hertz);
// Public key systems over elliptic curves
-void Benchmark4(double t, double hertz);
+void BenchmarkEllipticCurveAlgorithms(double t, double hertz);
// These are defined in bench1.cpp
extern void OutputResultKeying(double iterations, double timeTaken);