mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-05-13 03:00:24 -04:00
20 lines
333 B
C++
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_ */
|