blob: d046e8d2029517ee25b9c1bdfcb6f5f7c841d2e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#include <botan/botan.h>
#include <botan/benchmark.h>
#include <iostream>
#include <string>
#include <map>
#include <cstdlib>
int main(int argc, char* argv[])
{
if(argc <= 2)
{
std::cout << "Usage: " << argv[0] << " seconds <algo1> <algo2> ...\n";
return 1;
}
Botan::LibraryInitializer init;
Botan::AutoSeeded_RNG rng;
Botan::Default_Benchmark_Timer timer;
Botan::Algorithm_Factory& af = Botan::global_state().algorithm_factory();
double ms = 1000 * std::atof(argv[1]);
for(size_t i = 2; argv[i]; ++i)
{
std::string algo = argv[i];
std::map<std::string, double> results =
Botan::algorithm_benchmark(algo, ms, timer, rng, af);
std::cout << algo << ":\n";
for(std::map<std::string, double>::iterator r = results.begin();
r != results.end(); ++r)
{
std::cout << " " << r->first << ": " << r->second << " MiB/s\n";
}
std::cout << "\n";
}
}
|