mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
26 lines
434 B
C++
26 lines
434 B
C++
/*
|
|
* CowGearOptions.h
|
|
*
|
|
*/
|
|
|
|
#ifndef PROTOCOLS_COWGEAROPTIONS_H_
|
|
#define PROTOCOLS_COWGEAROPTIONS_H_
|
|
|
|
#include "Tools/ezOptionParser.h"
|
|
|
|
class CowGearOptions
|
|
{
|
|
void lowgear_from_covert();
|
|
|
|
public:
|
|
static CowGearOptions singleton;
|
|
|
|
int covert_security;
|
|
int lowgear_security;
|
|
|
|
CowGearOptions();
|
|
CowGearOptions(ez::ezOptionParser& opt, int argc, const char** argv);
|
|
};
|
|
|
|
#endif /* PROTOCOLS_COWGEAROPTIONS_H_ */
|