Files
MP-SPDZ/Tools/benchmarking.h
2022-04-19 15:13:19 +02:00

20 lines
333 B
C++

/*
* benchmarking.h
*
*/
#ifndef TOOLS_BENCHMARKING_H_
#define TOOLS_BENCHMARKING_H_
#include <stdexcept>
#include <string>
#include <iostream>
using namespace std;
// call before insecure benchmarking functionality
void insecure(string message, bool warning = true);
void insecure_fake();
#endif /* TOOLS_BENCHMARKING_H_ */