aboutsummaryrefslogtreecommitdiffstats
path: root/src/cmd/speed.h
blob: 5f3918a3f09620e38206cc6d9f606a4b4ad8078d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
* (C) 2014 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/

#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