2017-01-27 12:05:45 +00:00
|
|
|
// bench.h - originally written and placed in the public domain by Wei Dai
|
2017-02-21 07:03:29 +00:00
|
|
|
// CryptoPP::Test namespace added by JW in February 2017
|
2015-11-18 20:32:28 +00:00
|
|
|
|
2015-11-05 06:59:46 +00:00
|
|
|
#ifndef CRYPTOPP_BENCH_H
|
|
|
|
#define CRYPTOPP_BENCH_H
|
|
|
|
|
|
|
|
#include "cryptlib.h"
|
|
|
|
|
2017-03-08 21:59:24 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <iomanip>
|
|
|
|
#include <cmath>
|
|
|
|
#include <ctime>
|
|
|
|
|
2017-02-21 07:03:29 +00:00
|
|
|
NAMESPACE_BEGIN(CryptoPP)
|
|
|
|
NAMESPACE_BEGIN(Test)
|
|
|
|
|
2017-05-20 03:29:59 +00:00
|
|
|
// More granular control over benchmarks
|
|
|
|
enum TestClass {
|
|
|
|
Unkeyed=1,SharedKeyMAC=2,SharedKeyStream=4,SharedKeyBlock=8,SharedKeyOther=16,
|
|
|
|
PublicKeyAgreement=32,PublicKeyEncryption=64,PublicKeySignature=128,PublicKeyOther=256,
|
|
|
|
SharedKey=SharedKeyMAC|SharedKeyStream|SharedKeyBlock|SharedKeyOther,
|
|
|
|
PublicKey=PublicKeyAgreement|PublicKeyEncryption|PublicKeySignature|PublicKeyOther,
|
|
|
|
All=Unkeyed|SharedKey|PublicKey
|
|
|
|
};
|
2017-04-14 01:45:21 +00:00
|
|
|
|
2017-03-08 21:59:24 +00:00
|
|
|
extern const double CLOCK_TICKS_PER_SECOND;
|
|
|
|
extern double g_allocatedTime;
|
|
|
|
extern double g_hertz;
|
|
|
|
extern double g_logTotal;
|
|
|
|
extern unsigned int g_logCount;
|
|
|
|
extern const byte defaultKey[];
|
|
|
|
|
|
|
|
// Test book keeping
|
|
|
|
extern time_t g_testBegin;
|
|
|
|
extern time_t g_testEnd;
|
|
|
|
|
2017-05-20 03:29:59 +00:00
|
|
|
// Command handler
|
|
|
|
void BenchmarkWithCommand(int argc, const char* const argv[]);
|
2017-03-08 21:59:24 +00:00
|
|
|
// Top level, prints preamble and postamble
|
2017-04-14 01:45:21 +00:00
|
|
|
void Benchmark(Test::TestClass suites, double t, double hertz);
|
2017-03-08 21:59:24 +00:00
|
|
|
// Unkeyed systems
|
|
|
|
void Benchmark1(double t, double hertz);
|
|
|
|
// Shared key systems
|
|
|
|
void Benchmark2(double t, double hertz);
|
|
|
|
// Public key systems
|
|
|
|
void Benchmark3(double t, double hertz);
|
|
|
|
|
|
|
|
void OutputResultBytes(const char *name, double length, double timeTaken);
|
|
|
|
void OutputResultOperations(const char *name, const char *operation, bool pc, unsigned long iterations, double timeTaken);
|
2015-11-05 06:59:46 +00:00
|
|
|
|
2017-02-21 07:03:29 +00:00
|
|
|
NAMESPACE_END // Test
|
|
|
|
NAMESPACE_END // CryptoPP
|
|
|
|
|
2015-11-05 06:59:46 +00:00
|
|
|
#endif
|