mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-06 09:25:01 -05:00
21 lines
495 B
C++
21 lines
495 B
C++
|
|
#ifndef BOTAN_CHECK_BENCHMARK_H__
|
|
#define BOTAN_CHECK_BENCHMARK_H__
|
|
|
|
#include <botan/rng.h>
|
|
#include <string>
|
|
|
|
void benchmark(Botan::RandomNumberGenerator& rng,
|
|
double seconds,
|
|
u32bit buf_size);
|
|
|
|
bool bench_algo(const std::string& algo_name,
|
|
Botan::RandomNumberGenerator& rng,
|
|
double seconds,
|
|
u32bit buf_size);
|
|
|
|
void bench_pk(Botan::RandomNumberGenerator&,
|
|
const std::string&, double seconds);
|
|
|
|
#endif
|