Files
MP-SPDZ/Yao/Program.cpp
2018-10-26 15:52:49 +11:00

22 lines
356 B
C++

/*
* Program.cpp
*
*/
#include "YaoEvalWire.h"
#include "YaoGarbleWire.h"
#include "GC/Instruction.hpp"
#include "GC/Program.hpp"
namespace GC
{
template class Instruction< Secret<YaoGarbleWire> >;
template class Instruction< Secret<YaoEvalWire> >;
template class Program< Secret<YaoGarbleWire> >;
template class Program< Secret<YaoEvalWire> >;
}