blob: e101acdc2d16e0cf3360b3739755381e90851a0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef BOTAN_BENCHMARCH_H__
#define BOTAN_BENCHMARCH_H__
#include <botan/rng.h>
#include <string>
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
|