Files
MP-SPDZ/Protocols/HighGearKeyGen.cpp
Marcel Keller e07d9bf2a3 Maintenance.
2022-01-11 16:05:26 +11:00

24 lines
495 B
C++

/*
* KeyGen.cpp
*
*/
#include "FHEOffline/DataSetup.h"
#include "Processor/OnlineOptions.h"
#include "Protocols/HighGearKeyGen.hpp"
template<>
void PartSetup<FFT_Data>::key_and_mac_generation(Player& P,
MachineBase& machine, int, false_type)
{
HighGearKeyGen<0, 0>(P, params).run(*this, machine);
}
template<>
void PartSetup<P2Data>::key_and_mac_generation(Player& P, MachineBase& machine,
int, false_type)
{
HighGearKeyGen<0, 0>(P, params).run(*this, machine);
}