aboutsummaryrefslogtreecommitdiffstats
path: root/src/cmd/speed.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2014-11-12 01:23:55 +0000
committerlloyd <[email protected]>2014-11-12 01:23:55 +0000
commit8b0cbccc7b11e545ed27bc6d7bda04b5cf632e60 (patch)
tree7ea9368d6ccaa85337a63b55e8bd15efa46fd357 /src/cmd/speed.h
parent67161b91163afad417f9483cb557b26c5f5f4bc0 (diff)
Command line prog cleanup
Diffstat (limited to 'src/cmd/speed.h')
-rw-r--r--src/cmd/speed.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/cmd/speed.h b/src/cmd/speed.h
new file mode 100644
index 000000000..97aa0ecc1
--- /dev/null
+++ b/src/cmd/speed.h
@@ -0,0 +1,11 @@
+
+#ifndef BOTAN_CHECK_BENCHMARK_H__
+#define BOTAN_CHECK_BENCHMARK_H__
+
+#include <botan/rng.h>
+#include <string>
+
+void bench_pk(Botan::RandomNumberGenerator& rng,
+ const std::string& algo, double seconds);
+
+#endif