Files
MP-SPDZ/Yao/Program.cpp
Marcel Keller cc0711c224 MP-SPDZ.
2018-10-11 17:20:26 +11:00

19 lines
303 B
C++

/*
* Program.cpp
*
*/
#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> >;
}