mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-09 21:48:11 -05:00
23 lines
509 B
C++
23 lines
509 B
C++
/*
|
|
* Program.cpp
|
|
*
|
|
*/
|
|
|
|
#include "GC/Instruction.hpp"
|
|
#include "GC/Program.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> >;
|
|
|
|
}
|