mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-08 21:18:03 -05:00
24 lines
394 B
C++
24 lines
394 B
C++
/*
|
|
* Program.cpp
|
|
*
|
|
*/
|
|
|
|
#include "YaoEvalWire.h"
|
|
#include "YaoGarbleWire.h"
|
|
|
|
#include "GC/Instruction.hpp"
|
|
#include "GC/Program.hpp"
|
|
|
|
#include "Processor/Instruction.hpp"
|
|
|
|
namespace GC
|
|
{
|
|
|
|
template class Instruction< Secret<YaoGarbleWire> >;
|
|
template class Instruction< Secret<YaoEvalWire> >;
|
|
|
|
template class Program< Secret<YaoGarbleWire> >;
|
|
template class Program< Secret<YaoEvalWire> >;
|
|
|
|
}
|