summaryrefslogtreecommitdiffstats
path: root/botan/checks/bench.h
diff options
context:
space:
mode:
Diffstat (limited to 'botan/checks/bench.h')
-rw-r--r--botan/checks/bench.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/botan/checks/bench.h b/botan/checks/bench.h
new file mode 100644
index 0000000..07d67e0
--- /dev/null
+++ b/botan/checks/bench.h
@@ -0,0 +1,37 @@
+
+#ifndef BOTAN_BENCHMARCH_H__
+#define BOTAN_BENCHMARCH_H__
+
+#include <botan/rng.h>
+#include <string>
+#include <map>
+#include <set>
+#include "timer.h"
+
+#include <iostream>
+
+class Benchmark_Report
+ {
+ public:
+ void report(const std::string& name, Timer timer)
+ {
+ std::cout << name << " " << timer << std::endl;
+ data[name].insert(timer);
+ }
+
+ private:
+ std::map<std::string, std::set<Timer> > data;
+ };
+
+
+void benchmark(const std::string&, Botan::RandomNumberGenerator&,
+ bool html, double seconds);
+
+void bench_pk(Botan::RandomNumberGenerator&,
+ const std::string&, bool html, double seconds);
+
+u32bit bench_algo(const std::string&,
+ Botan::RandomNumberGenerator&,
+ double);
+
+#endif