mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
19 lines
240 B
C++
19 lines
240 B
C++
/*
|
|
* RandomPrep.h
|
|
*
|
|
*/
|
|
|
|
#ifndef PROTOCOLS_RANDOMPREP_H_
|
|
#define PROTOCOLS_RANDOMPREP_H_
|
|
|
|
template<class T>
|
|
class RandomPrep
|
|
{
|
|
public:
|
|
virtual ~RandomPrep() {}
|
|
|
|
virtual T get_random() = 0;
|
|
};
|
|
|
|
#endif /* PROTOCOLS_RANDOMPREP_H_ */
|