#ifndef BOTAN_CHECK_BENCHMARK_H__ #define BOTAN_CHECK_BENCHMARK_H__ #include "../common.h" #include #include #include using namespace Botan; int speed_main(int argc, char* argv[]); void benchmark(double seconds, size_t buf_size); void bench_algo(const std::string& algo_name, RandomNumberGenerator& rng, double seconds, size_t buf_size); void bench_pk(RandomNumberGenerator& rng, const std::string& algo, double seconds); #endif