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