mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
19 lines
378 B
C
19 lines
378 B
C
// (C) 2018 University of Bristol. See License.txt
|
|
|
|
#ifndef _FullSetup
|
|
#define _FullSetup
|
|
|
|
/* Reads in the data created by the setup program */
|
|
|
|
#include "FHE/FHE_Params.h"
|
|
#include "FHE/P2Data.h"
|
|
#include "Math/Setup.h"
|
|
|
|
void get_setup(FHE_Params& params_p,FFT_Data& FTD,
|
|
FHE_Params& params_2,P2Data& P2D,string dir,
|
|
bool skip_2=false);
|
|
|
|
#endif
|
|
|
|
|